Skip to content

1.0.9

Choose a tag to compare

@SarahWeiii SarahWeiii released this 02 Apr 01:07
· 32 commits to main since this release

What's New

  • Real metric mode (-rm/--real-metric): Specify the concavity threshold directly in meters instead of normalized units. Ideal for meshes in real-world scale (e.g., from 3D scans or CAD models). The algorithm automatically converts it to the internal normalized threshold based on the mesh bounding box extent.

Usage

# CLI
./main -i model.obj -o output.obj -t 0.01 -rm

# Python
from coacd import Mesh, run_coacd
result = run_coacd(mesh, threshold=0.01, real_metric=True)

Full Changelog: 1.0.8...1.0.9