(self, hatch, density)
| 140 | |
| 141 | class Circles(Shapes): |
| 142 | def __init__(self, hatch, density): |
| 143 | path = Path.unit_circle() |
| 144 | self.shape_vertices = path.vertices |
| 145 | self.shape_codes = path.codes |
| 146 | super().__init__(hatch, density) |
| 147 | |
| 148 | |
| 149 | class SmallCircles(Circles): |
nothing calls this directly
no test coverage detected