1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! Operations to update shapes

mod build;
mod insert;
mod join;
mod update;

pub use self::{
    build::{
        BuildCycle, BuildFace, BuildHalfEdge, BuildShell, BuildSurface,
        Polygon, Tetrahedron,
    },
    insert::Insert,
    join::JoinCycle,
    update::{UpdateCycle, UpdateFace, UpdateHalfEdge, UpdateShell},
};