geop_core_topology/edit/mod.rs
1//! Incremental mutation of an existing [`crate::Model`]: unlike
2//! `Model`'s own `insert_*` methods (which only ever add a brand-new,
3//! unconnected entity), everything here restructures or replaces what's
4//! already there.
5
6mod assemble_solid;
7mod merge_edge;
8mod merge_vertex;
9mod reverse_face;
10pub mod splice_edge_into_face;
11mod split_edge_at_vertex;