diff options
| author | Marius Kintel <marius@kintel.net> | 2013-11-25 05:27:15 (GMT) | 
|---|---|---|
| committer | Marius Kintel <marius@kintel.net> | 2013-11-25 05:27:15 (GMT) | 
| commit | de2db22b5f82855b9cf42829c4dde3b4bd231273 (patch) | |
| tree | 555ed5e8885a41e253e9c6687e7c76b3ecce7cea /tests/regression/dumptest | |
| parent | 8496e5d7cc273680b61313b98a327dd9b355e28f (diff) | |
Split projection tests into cut vs. project
Diffstat (limited to 'tests/regression/dumptest')
| -rw-r--r-- | tests/regression/dumptest/projection-cut-tests-expected.csg | 33 | ||||
| -rw-r--r-- | tests/regression/dumptest/projection-tests-expected.csg | 36 | 
2 files changed, 46 insertions, 23 deletions
| diff --git a/tests/regression/dumptest/projection-cut-tests-expected.csg b/tests/regression/dumptest/projection-cut-tests-expected.csg new file mode 100644 index 0000000..4c37fa2 --- /dev/null +++ b/tests/regression/dumptest/projection-cut-tests-expected.csg @@ -0,0 +1,33 @@ +group() { +	projection(cut = true, convexity = 0) { +		square(size = [1, 1], center = false); +	} +	projection(cut = true, convexity = 0) { +		multmatrix([[1, 0, 0, 20], [0, 1, 0, 0], [0, 0, 1, 0], [0, 0, 0, 1]]) { +			cube(size = [10, 10, 10], center = true); +		} +	} +	multmatrix([[1, 0, 0, 0], [0, 1, 0, 20], [0, 0, 1, 0], [0, 0, 0, 1]]) { +		projection(cut = true, convexity = 0) { +			multmatrix([[1, 0, 0, 0], [0, 1, 0, 0], [0, 0, 1, -4.999999], [0, 0, 0, 1]]) { +				cube(size = [10, 10, 10], center = true); +			} +		} +	} +	multmatrix([[1, 0, 0, 0], [0, 1, 0, -10], [0, 0, 1, 0], [0, 0, 0, 1]]) { +		projection(cut = true, convexity = 0) { +			union() { +				difference() { +					cube(size = [5, 5, 5], center = true); +					cube(size = [4, 4, 4], center = true); +				} +				multmatrix([[1, 0, 0, 2.1], [0, 1, 0, 2.1], [0, 0, 1, 0], [0, 0, 0, 1]]) { +					difference() { +						cube(size = [5, 5, 5], center = true); +						cube(size = [4, 4, 4], center = true); +					} +				} +			} +		} +	} +} diff --git a/tests/regression/dumptest/projection-tests-expected.csg b/tests/regression/dumptest/projection-tests-expected.csg index da3e5ce..04cd404 100644 --- a/tests/regression/dumptest/projection-tests-expected.csg +++ b/tests/regression/dumptest/projection-tests-expected.csg @@ -1,37 +1,27 @@  group() {  	projection(cut = false, convexity = 0);  	projection(cut = false, convexity = 0); -	projection(cut = true, convexity = 0) { +	projection(cut = false, convexity = 0) {  		square(size = [1, 1], center = false);  	}  	projection(cut = false, convexity = 0) {  		cube(size = [10, 10, 10], center = false);  	} -	projection(cut = true, convexity = 0) { -		multmatrix([[1, 0, 0, 20], [0, 1, 0, 0], [0, 0, 1, 0], [0, 0, 0, 1]]) { -			cube(size = [10, 10, 10], center = true); -		} -	} -	multmatrix([[1, 0, 0, 0], [0, 1, 0, 20], [0, 0, 1, 0], [0, 0, 0, 1]]) { -		projection(cut = true, convexity = 0) { -			multmatrix([[1, 0, 0, 0], [0, 1, 0, 0], [0, 0, 1, -4.999999], [0, 0, 0, 1]]) { -				cube(size = [10, 10, 10], center = true); +	multmatrix([[1, 0, 0, -12], [0, 1, 0, 0], [0, 0, 1, 0], [0, 0, 0, 1]]) { +		projection(cut = false, convexity = 0) { +			cube(size = [10, 10, 10], center = false); +			difference() { +				sphere($fn = 0, $fa = 12, $fs = 2, r = 10); +				cylinder($fn = 0, $fa = 12, $fs = 2, h = 30, r1 = 5, r2 = 5, center = true);  			}  		}  	} -	multmatrix([[1, 0, 0, 0], [0, 1, 0, -10], [0, 0, 1, 0], [0, 0, 0, 1]]) { -		projection(cut = true, convexity = 0) { -			union() { -				difference() { -					cube(size = [5, 5, 5], center = true); -					cube(size = [4, 4, 4], center = true); -				} -				multmatrix([[1, 0, 0, 2.1], [0, 1, 0, 2.1], [0, 0, 1, 0], [0, 0, 0, 1]]) { -					difference() { -						cube(size = [5, 5, 5], center = true); -						cube(size = [4, 4, 4], center = true); -					} -				} +	multmatrix([[1, 0, 0, 6], [0, 1, 0, -12], [0, 0, 1, 0], [0, 0, 0, 1]]) { +		projection(cut = false, convexity = 0) { +			cube(size = [10, 10, 10], center = false); +			difference() { +				sphere($fn = 0, $fa = 12, $fs = 2, r = 10); +				cylinder($fn = 0, $fa = 12, $fs = 2, h = 30, r1 = 5, r2 = 5, center = true);  			}  		}  	} | 
