(self)
| 5868 | assert len(list(w3)) == 2 |
| 5869 | |
| 5870 | def test_loft_face(self): |
| 5871 | |
| 5872 | f1 = plane(1, 1) |
| 5873 | f2 = face(circle(1)).moved(z=1) |
| 5874 | |
| 5875 | c = compound(f1, f2) |
| 5876 | |
| 5877 | w1 = Workplane().add(f1).add(f2).loft() |
| 5878 | w2 = Workplane().add(c).loft() |
| 5879 | |
| 5880 | # in both cases we get a solid |
| 5881 | assert w1.solids().size() == 1 |
| 5882 | assert w2.solids().size() == 1 |
| 5883 | |
| 5884 | def test_loft_to_vertex(self): |
| 5885 |