1
2
3
4
5
6
7
8
9
10
11
12
//! # Operations to split objects
//!
//! Splitting means removing an object, replacing it with to new ones that fill
//! the same space. This often makes sense, when you want to modify only part of
//! an object. In such a case, you can split off the part you want to modify,
//! leaving the rest unchanged.

mod edge;
mod face;
mod half_edge;

pub use self::{edge::SplitEdge, face::SplitFace, half_edge::SplitHalfEdge};