diff options
author | Torsten Paul <Torsten.Paul@gmx.de> | 2013-10-20 20:03:09 (GMT) |
---|---|---|
committer | Torsten Paul <Torsten.Paul@gmx.de> | 2013-10-21 17:47:55 (GMT) |
commit | 74082c8cff46863fe56ddc9de93cca57b610c4d9 (patch) | |
tree | c80b9777d10714790fe278b5527da05fc018945a /testdata | |
parent | 141f43498c6eaa7a59a053e28ae89d67f81c361e (diff) |
Extend circle tests to cover the new diameter parameter.
Diffstat (limited to 'testdata')
-rw-r--r-- | testdata/scad/features/circle-tests.scad | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/testdata/scad/features/circle-tests.scad b/testdata/scad/features/circle-tests.scad index 90cd9f6..57b1992 100644 --- a/testdata/scad/features/circle-tests.scad +++ b/testdata/scad/features/circle-tests.scad @@ -8,4 +8,6 @@ translate([6,-3,0]) circle(1, $fn=12); translate([0,-6,0]) circle(1, $fa=20, $fs=0.3); translate([3,-6,0]) circle(1, $fa=30, $fs=0.3); translate([6,-6,0]) circle(1, $fa=40, $fs=0.3); -translate([3,-9,0]) circle(1, $fn=0.1); +translate([0,-9,0]) circle(1, $fn=0.1); +translate([3,-9,0]) circle(d=2, $fn=8); +translate([6,-9,0]) circle(r=10, d=2, $fn=8); |