X-Git-Url: http://shamusworld.gotdns.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fgeometry.h;h=41cd472580f30621d546a45d658aaa4a2e8eab6a;hb=6114b754fcd6e7d83c71dc2fa0ef2ec185387e12;hp=02cfada77dee1c68b9e658adf335b6a7c9110d45;hpb=ea7712f342020baf61cf33ba98b12140da6aecf7;p=architektonas diff --git a/src/geometry.h b/src/geometry.h index 02cfada..41cd472 100644 --- a/src/geometry.h +++ b/src/geometry.h @@ -8,19 +8,17 @@ class Geometry { public: // All methods are class methods for this class -//unused static Point IntersectionOfLineAndLine(Point, Point, Point, Point); static double ParameterOfLineAndPoint(Point, Point, Point); 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 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 Intersects(Object *, Object *); + static void CheckLineToLineIntersection(Object *, Object *); + static void CheckCircleToCircleIntersection(Object *, Object *); + static void CheckLineToCircleIntersection(Object *, Object *); static void FindAnglesForSides(double s1, double s2, double s3, double * a1, double * a2, double * a3); static Point GetPointForParameter(Object *, double); + static Point Midpoint(Line *); }; #endif // __GEOMETRY_H__