fj_core/operations/update/
mod.rs

1//! Operations to update objects
2
3mod cycle;
4mod face;
5mod half_edge;
6mod region;
7mod shell;
8mod sketch;
9mod solid;
10
11pub use self::{
12    cycle::UpdateCycle, face::UpdateFace, half_edge::UpdateHalfEdge,
13    region::UpdateRegion, shell::UpdateShell, sketch::UpdateSketch,
14    solid::UpdateSolid,
15};