Tests extrusion while twisting through an angle, combining with other solids.
(self)
| 1350 | self.assertGreater(box.val().Volume(), cut.val().Volume()) |
| 1351 | |
| 1352 | def testTwistExtrudeCombine(self): |
| 1353 | """ |
| 1354 | Tests extrusion while twisting through an angle, combining with other solids. |
| 1355 | """ |
| 1356 | profile = Workplane("XY").rect(10, 10) |
| 1357 | r = profile.twistExtrude(10, 45) |
| 1358 | |
| 1359 | self.assertEqual(6, r.faces().size()) |
| 1360 | |
| 1361 | def testRectArray(self): |
| 1362 | x_num = 3 |
nothing calls this directly
no test coverage detected