The vertices of the `Path` as an (N, 2) array.
(self)
| 209 | |
| 210 | @property |
| 211 | def vertices(self): |
| 212 | """The vertices of the `Path` as an (N, 2) array.""" |
| 213 | return self._vertices |
| 214 | |
| 215 | @vertices.setter |
| 216 | def vertices(self, vertices): |
nothing calls this directly
no test coverage detected