]> Shamusworld >> Repos - architektonas/blobdiff - src/geometry.h
Added preliminary circle-to-circle intersection code.
[architektonas] / src / geometry.h
index 865dc6d0f6b36ed3a6050bcdde45d3c7e0912d78..1c4177b10e68120655b66ae9bc2ee48dcc068261 100644 (file)
@@ -13,13 +13,15 @@ class Geometry
                static Point MirrorPointAroundLine(Point, Point, Point);
                static Point RotatePointAroundPoint(Point, Point, double);
                static double Determinant(Point, Point);
-               static int Intersects(Object *, Object *, double * tp = 0, double * up = 0, double * vp = 0, double * wp = 0);
-               static int CheckLineToLineIntersection(Object *, Object *, double *, double *);
+               static void Intersects(Object *, Object *);//, double * tp = 0, double * up = 0, double * vp = 0, double * wp = 0);
+               static void CheckLineToLineIntersection(Object *, Object *);
+               static void CheckCircleToCircleIntersection(Object *, Object *);//, Point *, Point *);
 //             static int Intersects(Line *, Line *, double * tp = 0, double * up = 0);
 //             static int Intersects(Line *, Dimension *, double * tp = 0, double * up = 0);
 //             static int Intersects(Line * l, Circle * c, double * tp = 0, double * up = 0, double * vp = 0, double * wp = 0);
 //             static int Intersects(Circle * c1, Circle * c2, double * tp = 0, double * up = 0, double * vp = 0, double * wp = 0, Point * p1 = 0, Point * p2 = 0);
                static void FindAnglesForSides(double s1, double s2, double s3, double * a1, double * a2, double * a3);
+               static Point GetPointForParameter(Object *, double);
 };
 
 #endif         // __GEOMETRY_H__