Create oval with coordinates x1,y1,x2,y2.
(self, *args, **kw)
| 3079 | return self._create('line', args, kw) |
| 3080 | |
| 3081 | def create_oval(self, *args, **kw): |
| 3082 | """Create oval with coordinates x1,y1,x2,y2.""" |
| 3083 | return self._create('oval', args, kw) |
| 3084 | |
| 3085 | def create_polygon(self, *args, **kw): |
| 3086 | """Create polygon with coordinates x1,y1,...,xn,yn.""" |