Skip to content

Commit 4c4a9a0

Browse files
committed
tolerate much smaller values
1 parent 82466bd commit 4c4a9a0

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

trimesh/inertia.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -198,7 +198,7 @@ def radial_symmetry(mesh):
198198
scalar = mesh.principal_inertia_components.copy()
199199

200200
# exit early if inertia components are all zero
201-
if (scalar < 1e-12).any():
201+
if (scalar < 1e-30).any():
202202
return None, None, None
203203

204204
# normalize the PCI so we can compare them

0 commit comments

Comments
 (0)