(self)
| 5829 | assert len(verts) == 0 |
| 5830 | |
| 5831 | def test_export(self): |
| 5832 | |
| 5833 | with chdir(self.tmpdir): |
| 5834 | w = Workplane().box(1, 1, 1).export("box.brep") |
| 5835 | |
| 5836 | assert (w - Shape.importBrep("box.brep")).val().Volume() == approx(0) |
| 5837 | |
| 5838 | def test_bool_operators(self): |
| 5839 |