Test chamfer API with a cylinder shape
(self)
| 2286 | self.assertAlmostEqual(0.9, edge.Length(), 3) |
| 2287 | |
| 2288 | def testChamferCylinder(self): |
| 2289 | """ |
| 2290 | Test chamfer API with a cylinder shape |
| 2291 | """ |
| 2292 | cylinder = Workplane("XY").circle(1).extrude(1).faces(">Z").chamfer(0.1) |
| 2293 | self.saveModel(cylinder) |
| 2294 | self.assertEqual(4, cylinder.faces().size()) |
| 2295 | |
| 2296 | def testCounterBores(self): |
| 2297 | """ |