]> Shamusworld >> Repos - architektonas/blobdiff - src/line.cpp
Mirror tool now works successfully for all object types. :-D
[architektonas] / src / line.cpp
index 74c40b5a3b6a027f409bf574ada59b9e475e6b5a..b7abc9ad6bb62939cb9ddd5102a65d25d7bcadf3 100644 (file)
@@ -21,6 +21,7 @@
 #include <QtGui>
 #include "container.h"
 #include "dimension.h"
+#include "geometry.h"
 #include "mathconstants.h"
 #include "painter.h"
 
@@ -122,6 +123,10 @@ Line::~Line()
 
 /*virtual*/ bool Line::Collided(Vector point)
 {
+       // Someone told us to fuck off, so we'll fuck off. :-)
+       if (ignoreClicks)
+               return false;
+
        // We can assume this, since this is a mouse down event here.
        objectWasDragged = false;
        HitTest(point);
@@ -445,7 +450,8 @@ the horizontal line or vertical line that intersects from the current mouse posi
        Vector lineSegment = endpoint - position;
        Vector v1 = point - position;
        Vector v2 = point - endpoint;
-       double t = Vector::Parameter(position, endpoint, point);
+//     double t = Vector::Parameter(position, endpoint, point);
+       double t = Geometry::ParameterOfLineAndPoint(position, endpoint, point);
        double distance;
 
        // Geometric interpretation:
@@ -509,7 +515,7 @@ the horizontal line or vertical line that intersects from the current mouse posi
 
 /*virtual*/ void Line::Enumerate(FILE * file)
 {
-       fprintf(file, "LINE (%lf,%lf) (%lf,%lf)\n", position.x, position.y, endpoint.x, endpoint.y);
+       fprintf(file, "LINE %i (%lf,%lf) (%lf,%lf)\n", layer, position.x, position.y, endpoint.x, endpoint.y);
 }
 
 
@@ -575,6 +581,29 @@ same reference number.
 }
 
 
+/*virtual*/ void Line::Mirror(Point p1, Point p2)
+{
+       Point l1 = Geometry::MirrorPointAroundLine(position, p1, p2);
+       Point l2 = Geometry::MirrorPointAroundLine(endpoint, p1, p2);
+       position = l1;
+       endpoint = l2;
+}
+
+
+/*virtual*/ void Line::Save(void)
+{
+       Object::Save();
+       oldEndpoint = endpoint;
+}
+
+
+/*virtual*/ void Line::Restore(void)
+{
+       Object::Restore();
+       endpoint = oldEndpoint;
+}
+
+
 void Line::SetDimensionOnLine(Dimension * dimension/*=NULL*/)
 {
        // If they don't pass one in, create it for the caller.