Create polygon with coordinates x1,y1,...,xn,yn.
(self, *args, **kw)
| 3083 | return self._create('oval', args, kw) |
| 3084 | |
| 3085 | def create_polygon(self, *args, **kw): |
| 3086 | """Create polygon with coordinates x1,y1,...,xn,yn.""" |
| 3087 | return self._create('polygon', args, kw) |
| 3088 | |
| 3089 | def create_rectangle(self, *args, **kw): |
| 3090 | """Create rectangle with coordinates x1,y1,x2,y2.""" |