parry3d::transformation

Function intersect_meshes_with_tolerances

source
pub fn intersect_meshes_with_tolerances(
    pos1: &Isometry<f32>,
    mesh1: &TriMesh,
    flip1: bool,
    pos2: &Isometry<f32>,
    mesh2: &TriMesh,
    flip2: bool,
    tolerances: MeshIntersectionTolerances,
) -> Result<Option<TriMesh>, MeshIntersectionError>
Expand description

Similar to intersect_meshes.

It allows to specify epsilons for how the algorithm will behave. See MeshIntersectionTolerances for details.