shape_convex/lib.rs
1#![deny(rustdoc::missing_crate_level_docs)]
2#![warn(missing_docs)]
3#![deny(missing_debug_implementations)]
4#![doc = include_str!("../readme.md")]
5#![doc(html_logo_url = "https://raw.githubusercontent.com/oovm/shape-rs/dev/projects/images/Trapezohedron.svg")]
6#![doc(html_favicon_url = "https://raw.githubusercontent.com/oovm/shape-rs/dev/projects/images/Trapezohedron.svg")]
7
8// pub use crate::traits::*;
9
10// mod extensions;
11// mod traits;
12// mod utils;
13mod convex2d;
14
15pub use convex2d::{FastConvexHull, ConvexHull};