(self, radius, height)
| 178 | """ |
| 179 | |
| 180 | def cylinders(self, radius, height): |
| 181 | |
| 182 | # construct a cylinder at (0,0,0) |
| 183 | c = Solid.makeCylinder(radius, height, Vector(0, 0, 0)) |
| 184 | |
| 185 | # combine all the cylinders into a single compound |
| 186 | r = self.eachpoint(lambda loc: c.located(loc), True).union() |
| 187 | return r |
| 188 | |
| 189 | Workplane.cyl = cylinders |
| 190 |
nothing calls this directly
no test coverage detected