]> Shamusworld >> Repos - architektonas/blobdiff - src/dimension.cpp
Fix for missing ampersand in QApplication.
[architektonas] / src / dimension.cpp
index 5aa6a8829a815634a96135411c5c4bda46370580..26a39f5d29d9b4c001a47e5d79c4b793336ed203 100644 (file)
@@ -329,6 +329,16 @@ void Dimension::SetPoint2(Vector * v)
        needUpdate = true;
 }
 
+Vector Dimension::GetPoint1(void)
+{
+       return position;
+}
+
+Vector Dimension::GetPoint2(void)
+{
+       return endpoint;
+}
+
 void Dimension::FlipSides(void)
 {
 #if 0
@@ -342,3 +352,4 @@ void Dimension::FlipSides(void)
 #endif
        needUpdate = true;
 }
+