truck_shapeops/lib.rs
1//! Crate for operationg shapes. Provides boolean operations to Solid, and shape healing for importing shapes from other CAD systems.
2
3#![cfg_attr(not(debug_assertions), deny(warnings))]
4#![deny(clippy::all, rust_2018_idioms)]
5#![warn(
6 missing_docs,
7 missing_debug_implementations,
8 trivial_casts,
9 trivial_numeric_casts,
10 unsafe_code,
11 unstable_features,
12 unused_import_braces,
13 unused_qualifications
14)]
15
16mod healing;
17pub use healing::{RobustSplitClosedEdgesAndFaces, SplitClosedEdgesAndFaces};
18mod transversal;
19pub use transversal::{and, or, ShapeOpsCurve, ShapeOpsSurface};
20mod alternative;