(box_shape)
| 736 | |
| 737 | |
| 738 | def test_hollow(box_shape): |
| 739 | |
| 740 | res1 = hollow(box_shape, -0.1) |
| 741 | res2 = hollow(box_shape, 0.1) |
| 742 | |
| 743 | assert res1.isValid() |
| 744 | assert res1.faces().size() == 2 * box_shape.faces().size() |
| 745 | |
| 746 | assert res2.isValid() |
| 747 | assert res2.faces().size() == 2 * box_shape.faces().size() |
| 748 | |
| 749 | |
| 750 | def test_hollow_open(box_shape): |