locator and points

0 views
Skip to first unread message

Xinyue Ye

unread,
Dec 13, 2009, 10:35:53 PM12/13/09
to pysa...@googlegroups.com
In cg folder:

File "locators.py", line 611,

>>> p1 = Polygon(points=[Point((0, 1)), Point((4, 5)), Point((5, 1))])
>>> p2 = Polygon(points=[Point((3, 9)), Point((6, 7)), Point((1, 1))])

should be:

>>> p1 = Polygon([Point((0, 1)), Point((4, 5)), Point((5, 1))])
>>> p2 = Polygon([Point((3, 9)), Point((6, 7)), Point((1, 1))])

line 629:
>>> p1 = Polygon(points=[Point((0, 1)), Point((4, 5)), Point((5, 1))])
>>> p2 = Polygon(points=[Point((3, 9)), Point((6, 7)), Point((1, 1))])

should be:

>>> p1 = Polygon([Point((0, 1)), Point((4, 5)), Point((5, 1))])
>>> p2 = Polygon([Point((3, 9)), Point((6, 7)), Point((1, 1))])

line 649:

>>> p1 = Polygon(points=[Point((0, 1)), Point((4, 5)), Point((5, 1))])
>>> p2 = Polygon(points=[Point((3, 9)), Point((6, 7)), Point((1, 1))])

should be:

>>> p1 = Polygon([Point((0, 1)), Point((4, 5)), Point((5, 1))])
>>> p2 = Polygon([Point((3, 9)), Point((6, 7)), Point((1, 1))])

line 668:

>>> p1 = Polygon(points=[Point((0, 1)), Point((4, 5)), Point((5, 1))])
>>> p2 = Polygon(points=[Point((3, 9)), Point((6, 7)), Point((1, 1))])

should be:

>>> p1 = Polygon([Point((0, 1)), Point((4, 5)), Point((5, 1))])
>>> p2 = Polygon([Point((3, 9)), Point((6, 7)), Point((1, 1))])
Reply all
Reply to author
Forward
0 new messages