From: Michael Orlitzky Date: Sun, 25 Oct 2009 03:35:43 +0000 (-0400) Subject: Changed the wording of a comment. X-Git-Url: http://gitweb.michael.orlitzky.com/?p=dead%2Fcensus-tools.git;a=commitdiff_plain;h=6ae7669882869279ddbc89c383fce8903ceaed7d Changed the wording of a comment. --- 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)