We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7c52617 commit 2f3c0c2Copy full SHA for 2f3c0c2
tests/compas/geometry/test_pointcloud.py
@@ -64,4 +64,4 @@ def test_pointcloud_from_box():
64
box = Box.from_width_height_depth(x_size, z_size, y_size)
65
pointcloud = Pointcloud.from_box(box, 100)
66
assert len(pointcloud.points) == 100
67
- assert all((-x_size / 2 < x < x_size / 2) and (-y_size / 2 < y < y_size / 2) and (-z_size / 2 < z < z_size) for x, y, z in pointcloud.points)
+ assert all((-x_size / 2 < x < x_size / 2) and (-y_size / 2 < y < y_size / 2) and (-z_size / 2 < z < z_size / 2) for x, y, z in pointcloud.points)
0 commit comments