(self)
| 60 | self._test_plot(CenteredGrid(Noise(vector='b,a'), extrapolation.ZERO, a=64, b=8, bounds=Box(a=1, b=1)) * 0.1) |
| 61 | |
| 62 | def test_plot_vector_2d_batch(self): |
| 63 | self._test_plot(CenteredGrid(Noise(batch(b=2), vector=2), extrapolation.ZERO, bounds=Box['x,y', 0:1, 0:1], x=10, y=10)) |
| 64 | |
| 65 | def test_plot_staggered_grid_2d(self): |
| 66 | self._test_plot(StaggeredGrid(Noise(), extrapolation.ZERO, x=16, y=10, bounds=Box(x=1, y=1)) * 0.1) |
nothing calls this directly
no test coverage detected