]> Shamusworld >> Repos - architektonas/blobdiff - src/geometry.h
More polyline upgrading: points and arcs are now editable with the GUI.
[architektonas] / src / geometry.h
index 58252b3d1ac6d6291fb590d3d198e1768c2bb8d5..d657db6d986e5c454d66ec27c4ce921278070e7e 100644 (file)
@@ -23,6 +23,13 @@ class Geometry
                static void FindTangents(Object *, Point);
                static void FindTangents(Object *, Object *);
                static Point NearestTo(Point, Point, Point);
+               static Vector GetNormalOfPointAndLine(Point, Line *);
+               static int Orientation(Point, Point, Point);
+               static Circle FindCircleForThreePoints(Point, Point, Point);
+               static Arc FindArcForThreePoints(Point, Point, Point);
+               static double Determinant3x3(double, double, double, double, double, double, double, double, double);
+               static Arc Unpack(Point, Point, double);
+               static double Pack(Arc *);
 };
 
 #endif         // __GEOMETRY_H__