diff options
author | clifford <clifford@b57f626f-c46c-0410-a088-ec61d464b74c> | 2009-06-26 23:36:23 (GMT) |
---|---|---|
committer | clifford <clifford@b57f626f-c46c-0410-a088-ec61d464b74c> | 2009-06-26 23:36:23 (GMT) |
commit | 9479f8e77ba5af4778b1efe417f6c4452811d459 (patch) | |
tree | dfbc63a91e60f3e597cfb78f76865b05855da23c /value.cc | |
parent | 221ae1832702367047232bd0f12970f0422a0478 (diff) |
Clifford Wolf:
Transforms (scale, rotate, translate, multmatrix)
Various matrix related fixes
git-svn-id: http://svn.clifford.at/openscad/trunk@29 b57f626f-c46c-0410-a088-ec61d464b74c
Diffstat (limited to 'value.cc')
-rw-r--r-- | value.cc | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -186,7 +186,7 @@ QString Value::dump() const QString text = "["; for (int i=0; i<16; i++) { QString t; - t.sprintf("%f", m[i]); + t.sprintf("%f", m[i == 15 ? 15 : (i*4) % 15]); if (i % 4 == 0 && i > 0) text += ";"; if (i > 0) |