(self)
| 7 | |
| 8 | class CSGTreeTest(TestCase): |
| 9 | def test_single_mesh(self): |
| 10 | mesh = generate_box_mesh(np.zeros(3), np.ones(3)) |
| 11 | tree = CSGTree({"mesh": mesh}) |
| 12 | self.assert_array_equal(mesh.vertices, tree.vertices) |
| 13 | self.assert_array_equal(mesh.faces, tree.faces) |
nothing calls this directly
no test coverage detected