Create rectangle with coordinates x1,y1,x2,y2.
(self, *args, **kw)
| 3087 | return self._create('polygon', args, kw) |
| 3088 | |
| 3089 | def create_rectangle(self, *args, **kw): |
| 3090 | """Create rectangle with coordinates x1,y1,x2,y2.""" |
| 3091 | return self._create('rectangle', args, kw) |
| 3092 | |
| 3093 | def create_text(self, *args, **kw): |
| 3094 | """Create text with coordinates x1,y1.""" |