We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e4e8b34 commit cbe47b2Copy full SHA for cbe47b2
1 file changed
tests/test_e57.py
@@ -14,13 +14,6 @@ def test_read_points():
14
assert len(pointcloud) == 30_571
15
16
17
-def test_read_points_spherical():
18
- pointcloud = e57.read_points(r"testdata/pipeSpherical.e57")
19
- assert isinstance(pointcloud, np.ndarray)
20
- assert len(pointcloud) == 1_220
21
- assert pointcloud[0][0] == pytest.approx(-0.32225147)
22
-
23
24
def test_box_dimensions():
25
pointcloud: np.ndarray = e57.read_points(r"testdata/bunnyFloat.e57")
26
max_coords = pointcloud.max(0, None, False, -np.inf)
0 commit comments