Skip to main content

geop_ops_booleans/
lib.rs

1//! Boolean operations on solids.
2//!
3//! `remesh` imprints the two solids' boundaries onto each other (splitting
4//! edges at coincidences, tracing face x face intersection curves) so that
5//! `boolean` can classify and keep the right faces for union, intersection,
6//! or difference. Both work on a `geop_core_part::Part`, and `naming`
7//! describes the stable names they give to everything they create. `scenes` is reusable test-scene scaffolding, built purely
8//! from `basic_shapes`, shared by both modules' tests.
9
10pub mod boolean;
11pub mod naming;
12pub mod remesh;
13mod render_test;
14pub mod scenes;