(self)
| 35 | self.assert_valid_attributes(mesh, outer_hull) |
| 36 | |
| 37 | def test_intersecting_cubes(self): |
| 38 | mesh_1 = generate_box_mesh( |
| 39 | np.array([0, 0, 0]), np.array([2, 2, 2])) |
| 40 | mesh_2 = generate_box_mesh( |
| 41 | np.array([1, 1, 1]), np.array([3, 3, 3])) |
| 42 | mesh = merge_meshes((mesh_1, mesh_2)) |
| 43 | outer_hull = compute_outer_hull(mesh) |
| 44 | self.assertTrue(outer_hull.is_closed()) |
| 45 | self.assert_valid_attributes(mesh, outer_hull) |
| 46 | |
| 47 | def test_nested_cubes(self): |
| 48 | mesh_1 = generate_box_mesh( |
nothing calls this directly
no test coverage detected