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
12
13
14
use anyhow::Result;
use flowscad::*;

fn main() -> Result<()> {
    let f = D2::square(10)
        .translate(v2(4.,5.))
        .iter_rotate(10, 20)
        .hull()
        ;
    // println!("{:?}", &f);
    println!("{}", &f);
    Ok(())
}