Return a :class:`Path` for a unit regular asterisk with the given numVertices and radius of 1.0, centered at (0, 0).
(cls, numVertices)
| 836 | |
| 837 | @classmethod |
| 838 | def unit_regular_asterisk(cls, numVertices): |
| 839 | """ |
| 840 | Return a :class:`Path` for a unit regular asterisk with the given |
| 841 | numVertices and radius of 1.0, centered at (0, 0). |
| 842 | """ |
| 843 | return cls.unit_regular_star(numVertices, 0.0) |
| 844 | |
| 845 | _unit_circle = None |
| 846 |
no test coverage detected