39 #define CLIPPER_VERSION "6.4.2" 66 enum ClipType { ctIntersection, ctUnion, ctDifference, ctXor };
67 enum PolyType { ptSubject, ptClip };
72 enum PolyFillType { pftEvenOdd, pftNonZero, pftPositive, pftNegative };
76 static cInt
const loRange = 0x7FFF;
77 static cInt
const hiRange = 0x7FFF;
79 typedef signed long long cInt;
80 static cInt
const loRange = 0x3FFFFFFF;
81 static cInt
const hiRange = 0x3FFFFFFFFFFFFFFFLL;
82 typedef signed long long long64;
83 typedef unsigned long long ulong64;
92 IntPoint(cInt x = 0, cInt y = 0, cInt z = 0) : X(x), Y(y), Z(z){};
94 IntPoint(cInt x = 0, cInt y = 0) : X(x), Y(y){};
97 friend inline bool operator==(
const IntPoint &a,
const IntPoint &b) {
98 return a.X == b.X && a.Y == b.Y;
100 friend inline bool operator!=(
const IntPoint &a,
const IntPoint &b) {
101 return a.X != b.X || a.Y != b.Y;
106 typedef std::vector<IntPoint> Path;
107 typedef std::vector<Path> Paths;
109 inline Path &operator<<(Path &poly,
const IntPoint &p) {
113 inline Paths &operator<<(Paths &polys,
const Path &p) {
118 std::ostream &operator<<(std::ostream &s,
const IntPoint &p);
119 std::ostream &operator<<(std::ostream &s,
const Path &p);
120 std::ostream &operator<<(std::ostream &s,
const Paths &p);
125 DoublePoint(
double x = 0,
double y = 0) : X(x), Y(y) {}
126 DoublePoint(IntPoint ip) : X((double)ip.X), Y((double)ip.Y) {}
131 typedef void (*ZFillCallback)(IntPoint &e1bot, IntPoint &e1top, IntPoint &e2bot,
132 IntPoint &e2top, IntPoint &pt);
136 ioReverseSolution = 1,
137 ioStrictlySimple = 2,
138 ioPreserveCollinear = 4
140 enum JoinType { jtSquare, jtRound, jtMiter };
150 typedef std::vector<PolyNode *> PolyNodes;
155 virtual ~PolyNode(){};
159 PolyNode *GetNext()
const;
162 int ChildCount()
const;
170 PolyNode *GetNextSiblingUp()
const;
171 void AddChild(PolyNode &child);
172 friend class Clipper;
173 friend class ClipperOffset;
176 class PolyTree :
public PolyNode {
178 ~PolyTree() { Clear(); };
179 PolyNode *GetFirst()
const;
186 friend class Clipper;
189 bool Orientation(
const Path &poly);
190 double Area(
const Path &poly);
191 int PointInPolygon(
const IntPoint &pt,
const Path &path);
193 void SimplifyPolygon(
const Path &in_poly, Paths &out_polys,
194 PolyFillType fillType = pftEvenOdd);
195 void SimplifyPolygons(
const Paths &in_polys, Paths &out_polys,
196 PolyFillType fillType = pftEvenOdd);
197 void SimplifyPolygons(Paths &polys, PolyFillType fillType = pftEvenOdd);
199 void CleanPolygon(
const Path &in_poly, Path &out_poly,
double distance = 1.415);
200 void CleanPolygon(Path &poly,
double distance = 1.415);
201 void CleanPolygons(
const Paths &in_polys, Paths &out_polys,
202 double distance = 1.415);
203 void CleanPolygons(Paths &polys,
double distance = 1.415);
205 void MinkowskiSum(
const Path &pattern,
const Path &path, Paths &solution,
207 void MinkowskiSum(
const Path &pattern,
const Paths &paths, Paths &solution,
209 void MinkowskiDiff(
const Path &poly1,
const Path &poly2, Paths &solution);
211 void PolyTreeToPaths(
const PolyTree &polytree, Paths &paths);
212 void ClosedPathsFromPolyTree(
const PolyTree &polytree, Paths &paths);
213 void OpenPathsFromPolyTree(PolyTree &polytree, Paths &paths);
215 void ReversePath(Path &p);
216 void ReversePaths(Paths &p);
226 enum EdgeSide { esLeft = 1, esRight = 2 };
230 struct IntersectNode;
236 typedef std::vector<OutRec *> PolyOutList;
237 typedef std::vector<TEdge *> EdgeList;
238 typedef std::vector<Join *> JoinList;
239 typedef std::vector<IntersectNode *> IntersectList;
249 virtual ~ClipperBase();
250 virtual bool AddPath(
const Path &pg, PolyType PolyTyp,
bool Closed);
251 bool AddPaths(
const Paths &ppg, PolyType PolyTyp,
bool Closed);
252 virtual void Clear();
254 bool PreserveCollinear() {
return m_PreserveCollinear; };
255 void PreserveCollinear(
bool value) { m_PreserveCollinear = value; };
258 void DisposeLocalMinimaList();
259 TEdge *AddBoundsToLML(TEdge *e,
bool IsClosed);
260 virtual void Reset();
261 TEdge *ProcessBound(TEdge *E,
bool IsClockwise);
262 void InsertScanbeam(
const cInt Y);
263 bool PopScanbeam(cInt &Y);
264 bool LocalMinimaPending();
265 bool PopLocalMinima(cInt Y,
const LocalMinimum *&locMin);
266 OutRec *CreateOutRec();
267 void DisposeAllOutRecs();
268 void DisposeOutRec(PolyOutList::size_type index);
269 void SwapPositionsInAEL(TEdge *edge1, TEdge *edge2);
270 void DeleteFromAEL(TEdge *e);
271 void UpdateEdgeIntoAEL(TEdge *&e);
273 typedef std::vector<LocalMinimum> MinimaList;
274 MinimaList::iterator m_CurrentLM;
275 MinimaList m_MinimaList;
279 bool m_PreserveCollinear;
281 PolyOutList m_PolyOuts;
282 TEdge *m_ActiveEdges;
284 typedef std::priority_queue<cInt> ScanbeamList;
285 ScanbeamList m_Scanbeam;
289 class Clipper :
public virtual ClipperBase {
291 Clipper(
int initOptions = 0);
292 bool Execute(ClipType clipType, Paths &solution,
293 PolyFillType fillType = pftEvenOdd);
294 bool Execute(ClipType clipType, Paths &solution, PolyFillType subjFillType,
295 PolyFillType clipFillType);
296 bool Execute(ClipType clipType, PolyTree &polytree,
297 PolyFillType fillType = pftEvenOdd);
298 bool Execute(ClipType clipType, PolyTree &polytree, PolyFillType subjFillType,
299 PolyFillType clipFillType);
300 bool ReverseSolution() {
return m_ReverseOutput; };
301 void ReverseSolution(
bool value) { m_ReverseOutput = value; };
302 bool StrictlySimple() {
return m_StrictSimple; };
303 void StrictlySimple(
bool value) { m_StrictSimple = value; };
307 void ZFillFunction(ZFillCallback zFillFunc);
310 virtual bool ExecuteInternal();
314 JoinList m_GhostJoins;
315 IntersectList m_IntersectList;
317 typedef std::list<cInt> MaximaList;
319 TEdge *m_SortedEdges;
320 bool m_ExecuteLocked;
321 PolyFillType m_ClipFillType;
322 PolyFillType m_SubjFillType;
323 bool m_ReverseOutput;
324 bool m_UsingPolyTree;
327 ZFillCallback m_ZFill;
329 void SetWindingCount(TEdge &edge);
330 bool IsEvenOddFillType(
const TEdge &edge)
const;
331 bool IsEvenOddAltFillType(
const TEdge &edge)
const;
332 void InsertLocalMinimaIntoAEL(
const cInt botY);
333 void InsertEdgeIntoAEL(TEdge *edge, TEdge *startEdge);
334 void AddEdgeToSEL(TEdge *edge);
335 bool PopEdgeFromSEL(TEdge *&edge);
337 void DeleteFromSEL(TEdge *e);
338 void SwapPositionsInSEL(TEdge *edge1, TEdge *edge2);
339 bool IsContributing(
const TEdge &edge)
const;
340 bool IsTopHorz(
const cInt XPos);
341 void DoMaxima(TEdge *e);
342 void ProcessHorizontals();
343 void ProcessHorizontal(TEdge *horzEdge);
344 void AddLocalMaxPoly(TEdge *e1, TEdge *e2,
const IntPoint &pt);
345 OutPt *AddLocalMinPoly(TEdge *e1, TEdge *e2,
const IntPoint &pt);
346 OutRec *GetOutRec(
int idx);
347 void AppendPolygon(TEdge *e1, TEdge *e2);
348 void IntersectEdges(TEdge *e1, TEdge *e2, IntPoint &pt);
349 OutPt *AddOutPt(TEdge *e,
const IntPoint &pt);
350 OutPt *GetLastOutPt(TEdge *e);
351 bool ProcessIntersections(
const cInt topY);
352 void BuildIntersectList(
const cInt topY);
353 void ProcessIntersectList();
354 void ProcessEdgesAtTopOfScanbeam(
const cInt topY);
355 void BuildResult(Paths &polys);
356 void BuildResult2(PolyTree &polytree);
357 void SetHoleState(TEdge *e, OutRec *outrec);
358 void DisposeIntersectNodes();
359 bool FixupIntersectionOrder();
360 void FixupOutPolygon(OutRec &outrec);
361 void FixupOutPolyline(OutRec &outrec);
362 bool IsHole(TEdge *e);
363 bool FindOwnerFromSplitRecs(OutRec &outRec, OutRec *&currOrfl);
364 void FixHoleLinkage(OutRec &outrec);
365 void AddJoin(OutPt *op1, OutPt *op2,
const IntPoint offPt);
367 void ClearGhostJoins();
368 void AddGhostJoin(OutPt *op,
const IntPoint offPt);
369 bool JoinPoints(Join *j, OutRec *outRec1, OutRec *outRec2);
370 void JoinCommonEdges();
371 void DoSimplePolygons();
372 void FixupFirstLefts1(OutRec *OldOutRec, OutRec *NewOutRec);
373 void FixupFirstLefts2(OutRec *InnerOutRec, OutRec *OuterOutRec);
374 void FixupFirstLefts3(OutRec *OldOutRec, OutRec *NewOutRec);
376 void SetZ(IntPoint &pt, TEdge &e1, TEdge &e2);
381 class ClipperOffset {
383 ClipperOffset(
double miterLimit = 2.0,
double roundPrecision = 0.25);
385 void AddPath(
const Path &path, JoinType joinType, EndType endType);
386 void AddPaths(
const Paths &paths, JoinType joinType, EndType endType);
387 void Execute(Paths &solution,
double delta);
388 void Execute(PolyTree &solution,
double delta);
397 std::vector<DoublePoint> m_normals;
398 double m_delta, m_sinA, m_sin, m_cos;
399 double m_miterLim, m_StepsPerRad;
401 PolyNode m_polyNodes;
403 void FixOrientations();
404 void DoOffset(
double delta);
405 void OffsetPoint(
int j,
int &k, JoinType jointype);
406 void DoSquare(
int j,
int k);
407 void DoMiter(
int j,
int k,
double r);
408 void DoRound(
int j,
int k);
412 class clipperException :
public std::exception {
414 clipperException(
const char *description) : m_descr(description) {}
415 virtual ~clipperException() throw() {}
416 virtual const char *what()
const throw() {
return m_descr.c_str(); }
425 #endif // clipper_hpp Definition: clipper.cc:51