()
| 8 | |
| 9 | |
| 10 | def test_empty(): |
| 11 | |
| 12 | levelset = np.zeros((50, 50, 50)) |
| 13 | vertices, triangles = mcubes.marching_cubes(levelset, 0.5) |
| 14 | |
| 15 | assert len(vertices) == len(triangles) == 0 |
| 16 | |
| 17 | |
| 18 | def test_sphere(): |
nothing calls this directly
no outgoing calls
no test coverage detected