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 | |
parent | 9ca6f0dedf65ba917319088fdd7708957e87c30c (diff) |
Non-affine matrix issue reported by Len Trigg
-rw-r--r-- | doc/TODO.txt | 1 | ||||
-rw-r--r-- | testdata/scad/non-aff-matrix.scad | 6 |
2 files changed, 7 insertions, 0 deletions
diff --git a/doc/TODO.txt b/doc/TODO.txt index 45660de..cb52fbd 100644 --- a/doc/TODO.txt +++ b/doc/TODO.txt @@ -8,6 +8,7 @@ o It's now possible to start a new rendering while one is already running (which -> turn off most (or all) interaction while rendering -> Lock all or only one MainWindow (MDI)? o Look into the polygon winding and rotate_extrude() problem reported by Britton +o CGAL Aff_transformation_3 doesn't support non-affine transformations (non-aff-matrix.scad) STL Import BUGS --------------- 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); + |