diff options
author | Don Bright <hugh.m.bright@gmail.com> | 2013-12-29 23:20:17 (GMT) |
---|---|---|
committer | Don Bright <hugh.m.bright@gmail.com> | 2013-12-29 23:20:17 (GMT) |
commit | 81a08c05c2d03aa8791279dfbcf7f9ca826fcf96 (patch) | |
tree | 5177fa483ea81d5b5e6bbdb354425132b4f17478 /testdata/scad/features/linear_extrude-tests.scad | |
parent | 316c514208bebc7e5e99aeeaf916c6011a47b5ac (diff) | |
parent | b272d1f0defa8dd908217ccd43a48eb60735d2d4 (diff) |
Merge branch 'master' of github.com:openscad/openscad into colorsfix
Diffstat (limited to 'testdata/scad/features/linear_extrude-tests.scad')
-rw-r--r-- | testdata/scad/features/linear_extrude-tests.scad | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/testdata/scad/features/linear_extrude-tests.scad b/testdata/scad/features/linear_extrude-tests.scad index 680bf53..fbd1858 100644 --- a/testdata/scad/features/linear_extrude-tests.scad +++ b/testdata/scad/features/linear_extrude-tests.scad @@ -9,7 +9,12 @@ linear_extrude(height=10) square([10,10]); translate([19,5,0]) linear_extrude(height=10, center=true) difference() {circle(5); circle(3);} translate([31.5,2.5,0]) linear_extrude(height=10, twist=-45) polygon(points = [[-5,-2.5], [5,-2.5], [0,2.5]]); -translate([0,20,0]) linear_extrude(height=20, twist=45, slices=2) square([10,10]); +translate([0,20,0]) linear_extrude(height=20, twist=30, slices=2) { + difference() { + square([10,10]); + translate([1,1]) square([8,8]); + } +} translate([19,20,0]) linear_extrude(height=20, twist=45, slices=10) square([10,10]); translate([0,-15,0]) linear_extrude(5) square([10,10]); |