ImplicitCAD/Examples/example13-e.escad

5 lines
137 B
Plaintext
Raw Normal View History

2019-07-16 00:59:55 +03:00
/* 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);
}