ImplicitCAD/Examples/example13-e.escad
2019-08-08 01:05:58 +01:00

5 lines
132 B
Plaintext

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