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
8
9
10
11
use anyhow::Result;
use flowscad::*;

fn main() -> Result<()> {
    let e = D2::circle_d(4);
    let g = e.iter_translate(v2(1.,2.),10).union().add(D2::square(9));

    println!("{}", &g);
    Ok(())
}