X-Git-Url: http://shamusworld.gotdns.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fgeometry.h;h=d19d48c8c1735fdd81d2f89494dff85c3abc0a95;hb=9590e4ed45fd4e05eccc16bd8e9d51596aea5a6d;hp=6ff456410aa22ba01682128cd17a8392707c2a3b;hpb=921bf050ffe5fc81a9ab377e634180e659ee5d5d;p=architektonas diff --git a/src/geometry.h b/src/geometry.h index 6ff4564..d19d48c 100644 --- a/src/geometry.h +++ b/src/geometry.h @@ -3,6 +3,10 @@ #include "vector.h" +class Circle; +class Dimension; +class Line; + class Geometry { public: @@ -11,6 +15,10 @@ class Geometry 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(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); }; #endif // __GEOMETRY_H__