fix warning in test.scad

Apparently, cube does not take 3 arguments anymore but only 1.
This commit is contained in:
Adrian Schlatter
2019-11-16 12:37:12 +01:00
parent c6b8562c56
commit 08851025f5

View File

@@ -18,7 +18,7 @@ echo(thread_specs(str(type, "-ext")));
intersection() {
color("Green")
translate([-1000, 0, -1000])
cube(2000, 2000, 2000);
cube(2000);
union() {
bolt(type, turns);
nut(type, turns, Douter);