ImplicitCAD/Examples/example13-e.escad
2019-07-19 08:20:18 +01:00

5 lines
140 B
Plaintext

/* Example 13 - The rounded union of a cube and a sphere. */
union () {
cube ([0,0,0],[20,20,20]);
translate ([20,20,20]) sphere (15);
}