#1137 Added testcase

master
Marius Kintel 2015-01-05 14:32:59 -05:00
parent 1a1f36035d
commit 5786ba89ff
1 changed files with 7 additions and 0 deletions

7
testdata/scad/bugs/issue1137.scad vendored Normal file
View File

@ -0,0 +1,7 @@
minkowski() {
polyhedron(faces=[[3,2,0,1], [7,6,5,4],[4,5,2,3],[5,6,1,2],[6,7,0,1],[7,4,3,0]],
points=[[0,1,1],[1,1,1],[1,0,1],[0,0,1],[0,0,0],[1,0,0],[1,1,0],[0,1,0]]);
polyhedron(faces=[[3,2,1,0],[7,6,5,4],[4,5,2,3],[5,6,1,2],[6,7,0,1],[7,4,3,0]],
points=[[0,1,1],[1,1,1],[1,0,1],[0,0,1],[0,0,0],[1,0,0],[1,1,0],[0,1,0]]);
}