(self)
| 66 | self._test_plot(StaggeredGrid(Noise(), extrapolation.ZERO, x=16, y=10, bounds=Box(x=1, y=1)) * 0.1) |
| 67 | |
| 68 | def test_plot_multi_grid(self): |
| 69 | self._test_plot(overlay(CenteredGrid(Noise(), x=10, y=10), CenteredGrid(Noise(), x=10, y=10, bounds=Box(x=(5, 15), y=(5, 15))))) |
| 70 | |
| 71 | def test_plot_circle(self): |
| 72 | self._test_plot(Sphere(x=1, y=0, radius=.5)) |
nothing calls this directly
no test coverage detected