# HG changeset patch # User Nicolas Saunier # Date 1311031446 14400 # Node ID 680d4c82886d8c6d029c4b4e22c0aaeb2ea69071 # Parent 606010d1d9a436224226c30d7e5faa81c93ddad9 minor change to the point marker diff -r 606010d1d9a4 -r 680d4c82886d python/moving.py --- a/python/moving.py Mon Jul 18 14:29:07 2011 -0400 +++ b/python/moving.py Mon Jul 18 19:24:06 2011 -0400 @@ -135,9 +135,9 @@ def multiply(self, alpha): return Point(self.x*alpha, self.y*alpha) - def draw(self, options = ''): + def draw(self, options = 'o'): from matplotlib.pylab import plot - plot([self.x], [self.y], 'x'+options) + plot([self.x], [self.y], options) def norm2Squared(self): '''2-norm distance (Euclidean distance)'''