X-Git-Url: http://shamusworld.gotdns.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fgeometry.h;h=1c4177b10e68120655b66ae9bc2ee48dcc068261;hb=6a7baa2814a8b4d0b93df776a4c99689bcfb3ffa;hp=02cfada77dee1c68b9e658adf335b6a7c9110d45;hpb=ff2a28347dc30eccc28e7cd7298cccde7aa49d2c;p=architektonas diff --git a/src/geometry.h b/src/geometry.h index 02cfada..1c4177b 100644 --- a/src/geometry.h +++ b/src/geometry.h @@ -13,8 +13,9 @@ 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);