summaryrefslogtreecommitdiff
path: root/csgterm.cc
diff options
context:
space:
mode:
authorclifford <clifford@b57f626f-c46c-0410-a088-ec61d464b74c>2009-06-26 23:36:23 (GMT)
committerclifford <clifford@b57f626f-c46c-0410-a088-ec61d464b74c>2009-06-26 23:36:23 (GMT)
commit9479f8e77ba5af4778b1efe417f6c4452811d459 (patch)
treedfbc63a91e60f3e597cfb78f76865b05855da23c /csgterm.cc
parent221ae1832702367047232bd0f12970f0422a0478 (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.cc6
1 files changed, 1 insertions, 5 deletions
diff --git a/csgterm.cc b/csgterm.cc
index c1c6e14..6835f40 100644
--- a/csgterm.cc
+++ b/csgterm.cc
@@ -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;
}
contact: Jan Huwald // Impressum