Skip to content

Commit

Permalink
update test results
Browse files Browse the repository at this point in the history
  • Loading branch information
donbright committed Mar 16, 2013
1 parent c46fb24 commit eb87725
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 1 deletion.
4 changes: 3 additions & 1 deletion testdata/scad/features/resize-tests.scad
Expand Up @@ -4,7 +4,7 @@
// and should be inscribed in gold row in 'top' view
// back row (green) = should be all cubes auto-scaled up
// back top (purple) = uses 'auto' feature
// pink = recursive resize, negative, wrong syntax, etc
// pink = recursive resize, negative, <1, wrong syntax, etc

$fn=8;

Expand Down Expand Up @@ -76,4 +76,6 @@ translate([10,10,-10]) resize([-5,0,0]) cube();
translate([10,20,-10]) resize([-5,0,0],auto=3) cube();
translate([10,30,-10]) resize(-5,0,0,auto=3) cube();
translate([10,40,-10]) resize(5,0,0) cube();
translate([10,50,-10]) resize([0.5,0,7]) cube([0.5,1,1000]);
translate([10,60,-10]) resize([0,0,0.5]) cube([6,6,10000000000]);
}
Binary file modified tests/regression/cgalpngtest/resize-tests-expected.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
10 changes: 10 additions & 0 deletions tests/regression/dumptest/resize-tests-expected.txt
Expand Up @@ -256,5 +256,15 @@
cube(size = [1, 1, 1], center = false);
}
}
multmatrix([[1, 0, 0, 10], [0, 1, 0, 50], [0, 0, 1, -10], [0, 0, 0, 1]]) {
resize(newsize = [0.5,0,7], auto = [0,0,0]) {
cube(size = [0.5, 1, 1000], center = false);
}
}
multmatrix([[1, 0, 0, 10], [0, 1, 0, 60], [0, 0, 1, -10], [0, 0, 0, 1]]) {
resize(newsize = [0,0,0.5], auto = [0,0,0]) {
cube(size = [6, 6, 1e+10], center = false);
}
}
}

Binary file modified tests/regression/opencsgtest/resize-tests-expected.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified tests/regression/throwntogethertest/resize-tests-expected.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit eb87725

Please sign in to comment.