diff options
author | Marius Kintel <marius@kintel.net> | 2011-05-19 09:47:24 (GMT) |
---|---|---|
committer | Marius Kintel <marius@kintel.net> | 2011-05-19 09:47:24 (GMT) |
commit | ab525249369f0405746a79b6b99e95a0d79f94e1 (patch) | |
tree | 057885fd4797d5428c53a54b9730adcded2e3e17 /testdata | |
parent | 9ca6f0dedf65ba917319088fdd7708957e87c30c (diff) |
Non-affine matrix issue reported by Len Trigg
Diffstat (limited to 'testdata')
-rw-r--r-- | testdata/scad/non-aff-matrix.scad | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/testdata/scad/non-aff-matrix.scad b/testdata/scad/non-aff-matrix.scad new file mode 100644 index 0000000..7dbced1 --- /dev/null +++ b/testdata/scad/non-aff-matrix.scad @@ -0,0 +1,6 @@ +multmatrix(m = [[1, 0, 0, 0], + [0, 1, 0, 0], + [0, 0, 1, 0], + [0, 0, -0.02, 1]]) + linear_extrude(height=20) circle(r=10); + |