fix incorrect syntax in example 13.

This commit is contained in:
Julia Longtin 2019-08-08 01:05:58 +01:00
parent 00073f1305
commit 9b1f52e6b6

View File

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