pub fn decimate_qem(
vertices: &[Point3],
triangles: &[[u32; 3]],
options: DecimateOptions,
out_vertices: &mut [Point3],
out_triangles: &mut [[u32; 3]],
) -> Result<DecimateReport, DecimateError>Expand description
Decimate a triangle mesh with QEM edge collapses using the default
FilteredF64Kernel for the exact foldover-orientation guard.
See decimate_qem_with_kernel for the full contract.