pub trait ToTriMesh<N: RealField + Copy> {
type DiscretizationParameter;
// Required method
fn to_trimesh(&self, i: Self::DiscretizationParameter) -> TriMesh<N>;
}
Expand description
Trait implemented by shapes that can be approximated by a triangle mesh.