microcad 0.5.0

µcad Command Line Interface
1
2
3
4
5
6
7
8
9
use std::geo2d::*;
use std::ops::*;

sketch Hello(height = 42mm) {
    RoundedRect(width = 4 * height, height, radius = 10mm) - Text(height, "Hello µcad!").center();
}

// create a 3D text
Hello().extrude(23mm);