parry3d/transformation/mesh_intersection/
mesh_intersection_error.rsuse crate::shape::TriMeshBuilderError;
#[cfg(doc)]
use crate::shape::{TriMesh, TriMeshFlags};
#[derive(thiserror::Error, Debug, Copy, Clone, Eq, PartialEq)]
pub enum MeshIntersectionError {
#[error("at least one of the meshes is missing its topology information. Ensure that the `TriMeshFlags::ORIENTED` flag is enabled on both meshes.")]
MissingTopology,
#[error("at least one of the meshes is missing its pseudo-normals. Ensure that the `TriMeshFlags::ORIENTED` flag is enabled on both meshes.")]
MissingPseudoNormals,
#[error("internal failure while intersecting two triangles")]
TriTriError,
#[error("internal failure while merging faces resulting from intersections")]
DuplicateVertices,
#[error("internal failure while triangulating an intersection face")]
TriangulationError,
#[error("TriMeshBuilderError: {0}")]
TriMeshBuilderError(TriMeshBuilderError),
}
impl From<TriMeshBuilderError> for MeshIntersectionError {
fn from(value: TriMeshBuilderError) -> Self {
MeshIntersectionError::TriMeshBuilderError(value)
}
}