flowscad 0.1.2

2D graphic and 3D object design with a Rustic functional approach. SVG and OpenSCAD output.
Documentation
1
2
3
4
5
6
7
use flowscad::*;

fn main() {
    let f = D3::cuboid(v3(10., 20., 30.));
    println!("{}", &f);
}