Create oval with coordinates x1,y1,x2,y2.
(self, *args, **kw)
| 2996 | return self._create('line', args, kw) |
| 2997 | |
| 2998 | def create_oval(self, *args, **kw): |
| 2999 | """Create oval with coordinates x1,y1,x2,y2.""" |
| 3000 | return self._create('oval', args, kw) |
| 3001 | |
| 3002 | def create_polygon(self, *args, **kw): |
| 3003 | """Create polygon with coordinates x1,y1,...,xn,yn.""" |