The polygon vertices, as a list of ``(x, y)`` pairs.
(self)
| 4350 | |
| 4351 | @property |
| 4352 | def verts(self): |
| 4353 | """The polygon vertices, as a list of ``(x, y)`` pairs.""" |
| 4354 | return self._xys[:-1] |
| 4355 | |
| 4356 | @verts.setter |
| 4357 | def verts(self, xys): |
nothing calls this directly
no test coverage detected