diff options
author | Marius Kintel <marius@kintel.net> | 2014-02-10 07:18:07 (GMT) |
---|---|---|
committer | Marius Kintel <marius@kintel.net> | 2014-02-10 07:18:07 (GMT) |
commit | 3ce44e92a482d427e439d5358367ba6d30098afc (patch) | |
tree | 0212643a784ebf28295f09a82f32b642a6062932 | |
parent | 603ce024201b22d722e1bbb41eb5cc2ae682f708 (diff) |
cosmetics
-rw-r--r-- | testdata/modulecache-tests/moduleoverload.scad | 2 | ||||
-rw-r--r-- | testdata/modulecache-tests/mymodule-lib.scad | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/testdata/modulecache-tests/moduleoverload.scad b/testdata/modulecache-tests/moduleoverload.scad index 1928715..f8ebc6a 100644 --- a/testdata/modulecache-tests/moduleoverload.scad +++ b/testdata/modulecache-tests/moduleoverload.scad @@ -1,7 +1,7 @@ use <mymodule-lib.scad> module mymodule() { - sphere(); + sphere(5); } mymodule(); diff --git a/testdata/modulecache-tests/mymodule-lib.scad b/testdata/modulecache-tests/mymodule-lib.scad index 9d68581..c6f30f7 100644 --- a/testdata/modulecache-tests/mymodule-lib.scad +++ b/testdata/modulecache-tests/mymodule-lib.scad @@ -1,3 +1,3 @@ module mymodule() { - cylinder(center=true); + cylinder(r=5, center=true); } |