include/rays/polygon.h in rays-0.1.46 vs include/rays/polygon.h in rays-0.1.47
- old
+ new
@@ -52,10 +52,15 @@
typedef LineList::const_iterator const_iterator;
Polygon ();
- Polygon (const Point* points, size_t size, bool loop = true);
+ Polygon (
+ const Point* points, size_t size, bool loop = true);
+
+ Polygon (
+ DrawMode mode,
+ const Point* points, size_t size, bool loop = true);
Polygon (const Polyline& polyline);
Polygon (const Line* lines, size_t size);