X-Git-Url: https://git.ucc.asn.au/?p=ipdf%2Fcode.git;a=blobdiff_plain;f=src%2Fpath.h;h=eb2b7b7f33d953a64cfca28f7eca015212910bff;hp=1a0ed536d0642daf45c9074728db46101c5d778b;hb=58a6719da2337b3e6e20b581885f170bbe5fc480;hpb=e7066887c0d142ddef87ec9ae07ef08ff31573dc diff --git a/src/path.h b/src/path.h index 1a0ed53..eb2b7b7 100644 --- a/src/path.h +++ b/src/path.h @@ -6,6 +6,15 @@ #include "rect.h" #include "real.h" +#ifdef QUADTREE_DISABLED + +#define TRANSFORM_BEZIERS_TO_PATH +#ifdef TRANSFORM_BEZIERS_TO_PATH +#include "gmprat.h" +#endif + +#endif + namespace IPDF { @@ -22,12 +31,15 @@ namespace IPDF }; class Objects; + class View; struct Path { - Path(const Objects & objects, unsigned _start, unsigned _end, const Colour & _fill = Colour(128,128,128,255), const Colour & _stroke = Colour(0,0,0,0)); + Path(Objects & objects, unsigned _start, unsigned _end, const Colour & _fill = Colour(128,128,128,255), const Colour & _stroke = Colour(0,0,0,0)); - Rect SolveBounds(const Objects & objects) const; + Rect SolveBounds(const Objects & objects); + Rect & GetBounds(Objects & objects); + std::vector & FillPoints(const Objects & objects, const View & view); // Is point inside shape? bool PointInside(const Objects & objects, const Vec2 & pt, bool debug=false) const; @@ -43,6 +55,13 @@ namespace IPDF std::vector m_fill_points; + #ifdef TRANSFORM_BEZIERS_TO_PATH + Gmprat x; + Gmprat y; + Gmprat w; + Gmprat h; + #endif + Colour m_fill; // colour to fill with Colour m_stroke; // colour to outline with };