1 2 3 4 5 6 7 8 9 10 11
//! API for building objects
mod face;
mod shell;
mod sketch;
mod solid;
pub use self::{
face::FaceBuilder, shell::ShellBuilder, sketch::SketchBuilder,
solid::SolidBuilder,
};
1 2 3 4 5 6 7 8 9 10 11
//! API for building objects
mod face;
mod shell;
mod sketch;
mod solid;
pub use self::{
face::FaceBuilder, shell::ShellBuilder, sketch::SketchBuilder,
solid::SolidBuilder,
};