Create and return a circular `Spine`.
(cls, axes, center, radius, **kwargs)
| 476 | |
| 477 | @classmethod |
| 478 | def circular_spine(cls, axes, center, radius, **kwargs): |
| 479 | """Create and return a circular `Spine`.""" |
| 480 | path = mpath.Path.unit_circle() |
| 481 | spine_type = 'circle' |
| 482 | result = cls(axes, spine_type, path, **kwargs) |
| 483 | result.set_patch_circle(center, radius) |
| 484 | return result |
| 485 | |
| 486 | def set_color(self, c): |
| 487 | """ |
no test coverage detected