]> Shamusworld >> Repos - architektonas/blobdiff - src/structs.h
More polyline upgrading: points and arcs are now editable with the GUI.
[architektonas] / src / structs.h
index e7e7b30643ffa82465922fe2fdc3fead7d6a61cb..ea2245f65197b537945ff5a99edc7121a3344e96 100644 (file)
@@ -71,7 +71,8 @@ struct Arc {
        OBJECT_COMMON;
 
        Arc();
-       Arc(Vector pt1, double r, double a1, double a2, float th = 1.0, uint32_t c = 0, int l = LSSolid);
+       Arc(Vector ctr, double r, double a1, double a2, float th = 1.0, uint32_t c = 0, int l = LSSolid);
+       Arc(Vector ctr, double r, Point p1, Point p2, float th = 1.0, uint32_t c = 0, int l = LSSolid);
        Rect Bounds(void);
 };