X-Git-Url: http://shamusworld.gotdns.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fgeometry.h;h=2776ae34d4146e69e74be9647ed1144d0027a803;hb=f507d97c1b1118834a70332f5f79d8479a6964c0;hp=410c7e05e501435098045ce154638876a3ee4316;hpb=84afe881653a02a16b19d4da37435b8701b1a826;p=architektonas diff --git a/src/geometry.h b/src/geometry.h index 410c7e0..2776ae3 100644 --- a/src/geometry.h +++ b/src/geometry.h @@ -3,9 +3,9 @@ #include "vector.h" -class Circle; -class Dimension; -class Line; +//class Circle; +//class Dimension; +//class Line; class Geometry { @@ -16,10 +16,10 @@ 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 *, 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 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); };