solidrs 0.4.0

Rust library to generate openScad models. Inspired by SolidPython.
Documentation
1
2
3
4
5
6
union(){
    cube([10,20,5],center = true);
    translate([0,0,2.5]){
        cylinder(10, r = 5);
    }
}