]> gitweb.michael.orlitzky.com - dead/census-tools.git/blobdiff - src/Geometry.py
Changed the wording of a comment.
[dead/census-tools.git] / src / Geometry.py
index 89a6cdb929e87bc787574d62396c0fdea21df372..8207b40465df1f23672c4173069f09016cfd6b80 100644 (file)
@@ -252,9 +252,9 @@ class Polygon:
 
     def drag(self, v):
         """
-        Drag this polygon along the line v = (x2-x1, y2-y1), and
+        Drag this polygon along the vector v = (x2-x1, y2-y1), and
         return the new polygon consisting of the union of all points
-        that I've contained along the way.
+        that we've contained along the way.
         """
         terminal_p = self.translate(v)
         dv_rect = self.drag_rectangle(v)