(self)
| 8 | class GridTest(TestCase): |
| 9 | |
| 10 | def test_reshape(self): |
| 11 | c = PointCloud(Sphere(stack([vec(x=0, y=1)] * 50, instance('points')), radius=.1)) |
| 12 | c = expand(c, batch(b=2)) |
| 13 | c = rename_dims(c, 'points', 'particles') |
| 14 | assert batch(b=2) & instance(particles=50) == shape(c) |
nothing calls this directly
no test coverage detected