Non-affine matrix issue reported by Len Trigg

stl_dim
Marius Kintel 2011-05-19 11:47:24 +02:00
parent 9ca6f0dedf
commit ab52524936
2 changed files with 7 additions and 0 deletions

View File

@ -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
---------------

6
testdata/scad/non-aff-matrix.scad vendored Normal file
View File

@ -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);