parry3d_f64/transformation/convex_hull3/mod.rs
1pub use self::error::ConvexHullError;
2use self::initial_mesh::{try_get_initial_mesh, InitialMesh};
3use self::triangle_facet::TriangleFacet;
4use self::validation::check_facet_links;
5pub use convex_hull::{convex_hull, try_convex_hull};
6#[cfg(feature = "std")]
7pub use validation::check_convex_hull;
8
9mod convex_hull;
10mod error;
11mod initial_mesh;
12mod triangle_facet;
13mod validation;