ImplicitCAD/Examples/example13-e.escad

5 lines
132 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. */
2019-07-19 10:20:18 +03:00
union () {
2019-08-08 03:05:58 +03:00
cube ([20,20,20]);
2019-07-16 00:59:55 +03:00
translate ([20,20,20]) sphere (15);
}