solidrs 0.2.0

Rust library to generate openScad models. Inspired by SolidPython.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
mod boolean;
mod element;
mod modify;
mod scad;
mod shapes2d;
mod shapes3d;
#[cfg(test)]
mod tests;
mod transform;
mod var;

pub use element::Element;
pub use scad::Export;
pub use shapes2d::*;
pub use shapes3d::*;
pub use var::{Arg, Val, Var};