X-Git-Url: http://shamusworld.gotdns.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fgeometry.h;h=2776ae34d4146e69e74be9647ed1144d0027a803;hb=da1348151182fe5340495ff8243e662b96c1fbfa;hp=89360884d1bdc0f1259c0db2e3b59499fb8864ae;hpb=fd5a80446b2abfdfb9d8951fcc03fb1b55ad707c;p=architektonas diff --git a/src/geometry.h b/src/geometry.h index 8936088..2776ae3 100644 --- a/src/geometry.h +++ b/src/geometry.h @@ -3,8 +3,9 @@ #include "vector.h" -class Line; -class Circle; +//class Circle; +//class Dimension; +//class Line; class Geometry { @@ -15,8 +16,11 @@ class Geometry static Point MirrorPointAroundLine(Point, Point, Point); static Point RotatePointAroundPoint(Point, Point, double); static double Determinant(Point, Point); - static int Intersects(Line *, Line *, 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(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); }; #endif // __GEOMETRY_H__