diff options
author | Don Bright <hugh.m.bright@gmail.com> | 2013-06-15 19:26:41 (GMT) |
---|---|---|
committer | Don Bright <hugh.m.bright@gmail.com> | 2013-06-15 19:26:41 (GMT) |
commit | 12eefc770fabd200f2c268380757a29145b06e3a (patch) | |
tree | 9f9d693f134be1853aef11a02fdba2a62631b9d3 /testdata/scad/features/linear_extrude-tests.scad | |
parent | 07729e5384f650a66e73f19b69756ad66e0e8b7b (diff) | |
parent | f89b2993573045189fee6e5dc04d57e9613aadf1 (diff) |
Merge branch 'master' of github.com:openscad/openscad
Diffstat (limited to 'testdata/scad/features/linear_extrude-tests.scad')
-rw-r--r-- | testdata/scad/features/linear_extrude-tests.scad | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/testdata/scad/features/linear_extrude-tests.scad b/testdata/scad/features/linear_extrude-tests.scad index 528eea2..680bf53 100644 --- a/testdata/scad/features/linear_extrude-tests.scad +++ b/testdata/scad/features/linear_extrude-tests.scad @@ -22,3 +22,6 @@ translate([-15,20,0]) linear_extrude(height=20, scale=[4,5,6]) square(10); translate([-10,5,0]) linear_extrude(height=15, scale=-2) square(10, center=true); // scale given as undefined translate([-15,-15,0]) linear_extrude(height=10, scale=var_undef) square(10); + +// height is negative +translate([0,-25,0]) linear_extrude(-1) square(10, center=true); |