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 /csgterm.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 'csgterm.cc')
-rw-r--r-- | csgterm.cc | 6 |
1 files changed, 1 insertions, 5 deletions
@@ -22,15 +22,13 @@ #include "openscad.h" -CSGTerm::CSGTerm(PolySet *polyset, QString label, double m[16]) +CSGTerm::CSGTerm(PolySet *polyset, QString label) { this->type = PRIMITIVE; this->polyset = polyset; this->label = label; this->left = NULL; this->right = NULL; - for (int i=0; i<16; i++) - this->m[i] = m[i]; refcounter = 1; } @@ -40,8 +38,6 @@ CSGTerm::CSGTerm(type_e type, CSGTerm *left, CSGTerm *right) this->polyset = NULL; this->left = left; this->right = right; - for (int i=0; i<16; i++) - this->m[i] = 0; refcounter = 1; } |