Skip to content

Commit b208b47

Browse files
committed
#660 Lower CoACD default max hulls to 8
16 was already a big improvement over unlimited (-1), but Max Hulls is an output-count constraint rather than a search-quality one - tightening it further trims worst-case runtime without degrading individual cuts, unlike loosening threshold/MCTS params which would erode the precision this backend exists for.
1 parent 9a1df41 commit b208b47

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

properties/properties.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ class ColliderTools_Properties(bpy.types.PropertyGroup):
6969
coacd_maxConvexHulls: bpy.props.IntProperty(name='Max Hulls',
7070
description='Maximum number of output convex hulls. -1 for no limit '
7171
'(only takes effect if merge is enabled)',
72-
default=16,
72+
default=8,
7373
min=-1,
7474
soft_min=1,
7575
soft_max=64)

0 commit comments

Comments
 (0)