diff options
author | Marius Kintel <marius@kintel.net> | 2011-09-30 01:24:49 (GMT) |
---|---|---|
committer | Marius Kintel <marius@kintel.net> | 2011-09-30 01:24:49 (GMT) |
commit | e7001dd4592735e35779d26a77b4a7da69d547c0 (patch) | |
tree | 84ec3e499ceada2146168d13c9a0f2cce779a502 /testdata/scad/features/intersection-tests.scad | |
parent | bf3fb9634c44bcd28a4e2faede72052daa1f966c (diff) |
Reverted intersection with inside-out polyhedron - test belongs in the polyehdron test
Diffstat (limited to 'testdata/scad/features/intersection-tests.scad')
-rw-r--r-- | testdata/scad/features/intersection-tests.scad | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/testdata/scad/features/intersection-tests.scad b/testdata/scad/features/intersection-tests.scad index bc58233..e53f3c9 100644 --- a/testdata/scad/features/intersection-tests.scad +++ b/testdata/scad/features/intersection-tests.scad @@ -39,11 +39,3 @@ translate([-12,12,0]) intersection() { cube([10,10,10], center=true); translate([0,-9.99,-9.99]) cube([10,10,10], center=true); } - -translate([-12,0,0]) intersection() { - scale(10/sqrt(2)) - polyhedron(points = [[1,0,0],[-1,0,0],[0,1,0],[0,-1,0],[0,0,1],[0,0,-1]], - triangles = [[0,2,4],[0,5,2],[0,4,3],[0,3,5],[1,4,2],[1,2,5],[1,3,4], [1,5,3]], - convexity = 1); - translate([0,0,10]) cube([20,20,20], center=true); -} |