From 9b1f52e6b63deb7d2c8e9273bf6c1c8f70eb7287 Mon Sep 17 00:00:00 2001 From: Julia Longtin Date: Thu, 8 Aug 2019 01:05:58 +0100 Subject: [PATCH] fix incorrect syntax in example 13. --- Examples/example13-e.escad | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Examples/example13-e.escad b/Examples/example13-e.escad index 5c43735..7672064 100644 --- a/Examples/example13-e.escad +++ b/Examples/example13-e.escad @@ -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); } \ No newline at end of file