Tests countersinks
(self)
| 2309 | self.assertEqual(15, c2.faces().size()) |
| 2310 | |
| 2311 | def testCounterSinks(self): |
| 2312 | """ |
| 2313 | Tests countersinks |
| 2314 | """ |
| 2315 | s = Workplane(Plane.XY()) |
| 2316 | result = ( |
| 2317 | s.rect(2.0, 4.0) |
| 2318 | .extrude(0.5) |
| 2319 | .faces(">Z") |
| 2320 | .workplane() |
| 2321 | .rect(1.5, 3.5, forConstruction=True) |
| 2322 | .vertices() |
| 2323 | .cskHole(0.125, 0.25, 82, depth=None) |
| 2324 | ) |
| 2325 | self.saveModel(result) |
| 2326 | |
| 2327 | def testSplitKeepingHalf(self): |
| 2328 | """ |