X-Git-Url: http://gitweb.michael.orlitzky.com/?a=blobdiff_plain;f=src%2FGeometry.py;h=8207b40465df1f23672c4173069f09016cfd6b80;hb=6ae7669882869279ddbc89c383fce8903ceaed7d;hp=89a6cdb929e87bc787574d62396c0fdea21df372;hpb=27ce45a6f4e2844f3d7bc5d570f3cb06e087bb5a;p=dead%2Fcensus-tools.git diff --git a/src/Geometry.py b/src/Geometry.py index 89a6cdb..8207b40 100644 --- a/src/Geometry.py +++ b/src/Geometry.py @@ -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)