dimforge / parry

2D and 3D collision-detection library for Rust.
https://parry.rs
Apache License 2.0
529 stars 93 forks source link

compute_topology is private #126

Closed GlennWSo closed 1 year ago

GlennWSo commented 1 year ago

Hi, I want use parry3d::transformation::intersect_meshes on some meshes that i constrict from points and faces.

Acc to the documentation intersect_meshes require that halfedges have been computed. It seems like compute_topology does exatly what i want, to enable intersect_meshes

Why is compute_topology a private method?

Can it or something similar to it be made public?

GlennWSo commented 1 year ago

if figured out that the TriMesh::set_flags can do what i want. The issue can be closed.