diff --git a/src/starburst.scad b/src/starburst.scad index af629dad..e3f1104b 100644 --- a/src/starburst.scad +++ b/src/starburst.scad @@ -34,9 +34,7 @@ module starburst(r1, r2, n, height) { } } - union() { - for(i = [0 : n - 1]) { - rotate(2 * a * i) burst(); - } - } + for(i = [0 : n - 1]) { + rotate(2 * a * i) burst(); + } } \ No newline at end of file