Tests extrusion while twisting through an angle.
(self)
| 1328 | self.saveModel(defaultSweep) |
| 1329 | |
| 1330 | def testTwistExtrude(self): |
| 1331 | """ |
| 1332 | Tests extrusion while twisting through an angle. |
| 1333 | """ |
| 1334 | profile = Workplane("XY").rect(10, 10) |
| 1335 | r = profile.twistExtrude(10, 45, False) |
| 1336 | |
| 1337 | self.assertEqual(6, r.faces().size()) |
| 1338 | |
| 1339 | def testTwistExtrudeCombineCut(self): |
| 1340 | """ |
nothing calls this directly
no test coverage detected