I'm trying to use Clipper library to expand the obstacle images in my obstacle avoidance robot control assignment. But now, I'm even stuck with the example code of the library:
(http://www.angusj.com/delphi/clipper.php#code)
include "clipper.hpp"
//from clipper.hpp ...
//typedef signed long long long64;
//struct IntPoint {long64 X; long64 Y;};
//typedef std::vector<IntPoint> Polygon;
//typedef std::vector<Polygon> Polygons;
...
using namespace ClipperLib;
Polygons subj(2), clip(1), solution;
subj[0].push_back(IntPoint(180,200));
subj[0].push_back(IntPoint(260,200));
subj[0].push_back(IntPoint(260,150));
subj[0].push_back(IntPoint(180,150));
subj[1].push_back(IntPoint(215,160));
subj[1].push_back(IntPoint(230,190));
subj[1].push_back(IntPoint(200,190));
clip[0].push_back(IntPoint(190,210));
clip[0].push_back(IntPoint(240,210));
clip[0].push_back(IntPoint(240,130));
clip[0].push_back(IntPoint(190,130));
DrawPolygons(subj, 0x160000FF, 0x600000FF); // <- identifier not found
DrawPolygons(clip, 0x20FFFF00, 0x30FF0000); // <- identifier not found
Clipper c;
c.AddPolygons(subject, ptSubject);
c.AddPolygons(clip, ptClip);
if (c.Execute(ctIntersection, solution)
DrawPolygons(solution, 0x3000FF00, 0xFF006600);
I'm wondering if I'm lack of any library installation? I know this is a small question and I'm a bit of a novic but any help can ease a lot of my work. Thank you!