]> Shamusworld >> Repos - architektonas/blobdiff - src/geometry.cpp
Added angle snap to whole degrees, ability to manipulate Dimensions.
[architektonas] / src / geometry.cpp
index e5a6af2cd991b5c5f74ee5e198073e18f43053fe..b52ff7e97d058aaa7626b2568a0b667bc647c0d1 100644 (file)
@@ -340,3 +340,15 @@ Point Geometry::GetPointForParameter(Object * obj, double t)
        return Point(0, 0);
 }
 
+
+/*
+How to find the tangent of a point off a circle:
+
+ •  Calculate the midpoint on the point and the center of the circle
+ •  Get the length of the line segment from the and the center divided by two
+ •  Use that length to construct a circle with the point at the center and the
+    radius equal to that length
+ •  The intersection of the two circles are the tangent points
+
+*/
+