Return 'line' or 'polygon' or 'image' depending on type of item.
(self, item)
| 731 | self.cv.tag_lower(item) |
| 732 | |
| 733 | def _type(self, item): |
| 734 | """Return 'line' or 'polygon' or 'image' depending on |
| 735 | type of item. |
| 736 | """ |
| 737 | return self.cv.type(item) |
| 738 | |
| 739 | def _pointlist(self, item): |
| 740 | """returns list of coordinate-pairs of points of item |