projective/lib.rs
1#![deny(rustdoc::missing_crate_level_docs)]
2#![deny(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
8pub use crate::traits::*;
9
10mod traits;