summaryrefslogtreecommitdiff
path: root/csgterm.cc
diff options
context:
space:
mode:
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