From 08851025f5a323614cd79fcdd154e10a19f36a95 Mon Sep 17 00:00:00 2001 From: Adrian Schlatter <10478149+adrianschlatter@users.noreply.github.com> Date: Sat, 16 Nov 2019 12:37:12 +0100 Subject: [PATCH] fix warning in test.scad Apparently, cube does not take 3 arguments anymore but only 1. --- tests/test.scad | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test.scad b/tests/test.scad index 11f921d..c3f40e7 100644 --- a/tests/test.scad +++ b/tests/test.scad @@ -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);