Searched refs:create_polygon (Results 1 - 3 of 3) sorted by relevance
/third_party/python/Lib/tkinter/test/test_tkinter/ |
H A D | test_widgets.py | 862 i1 = c.create_polygon(20, 30, 40, 50, 60, 10) 869 i2 = c.create_polygon([21, 31, 41, 51, 61, 11]) 873 i3 = c.create_polygon((22, 32), (42, 52), (62, 12)) 877 i4 = c.create_polygon([(23, 33), (43, 53), (63, 13)]) 881 self.assertRaises(TclError, c.create_polygon, 20, 30, 60) 882 self.assertRaises(TclError, c.create_polygon, [20, 30, 60]) 883 self.assertRaises(IndexError, c.create_polygon) 884 self.assertRaises(IndexError, c.create_polygon, []) 887 lambda **kwargs: c.create_polygon(20, 30, 40, 50, 60, 10, **kwargs)) 889 lambda **kwargs: c.create_polygon(2 [all...] |
/third_party/python/Lib/ |
H A D | turtle.py | 497 return self.cv.create_polygon((0, 0, 0, 0, 0, 0), fill="", outline="")
|
/third_party/python/Lib/tkinter/ |
H A D | __init__.py | 2856 def create_polygon(self, *args, **kw): member in Canvas
|
Completed in 21 milliseconds