(self, radius, height)
| 271 | """ |
| 272 | |
| 273 | def cylinders(self, radius, height): |
| 274 | |
| 275 | c = Solid.makeCylinder(radius, height, Vector()) |
| 276 | |
| 277 | # Combine all the cylinders into a single compound |
| 278 | r = self.eachpoint(lambda loc: c.located(loc), True).union() |
| 279 | |
| 280 | return r |
| 281 | |
| 282 | Workplane.cyl = cylinders |
| 283 |
nothing calls this directly
no test coverage detected