1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
pub mod geometry;
pub mod mesh;
pub mod syntax;

pub mod prelude {
    pub use super::syntax::{Difference as _, LinearExtrude as _};
}

mod graphics;
mod input;
mod run;

pub use self::{
    geometry::shapes::Cylinder,
    graphics::{Index, Vertex},
    mesh::Mesh,
    run::run,
};