diff options
author | Marius Kintel <marius@kintel.net> | 2011-12-26 18:15:51 (GMT) |
---|---|---|
committer | Marius Kintel <marius@kintel.net> | 2011-12-26 18:15:51 (GMT) |
commit | bc3454f369a21cd689f42f5e9ec5cb316f9ebdd5 (patch) | |
tree | 9794056684d42b7dd4b955160c6e83fa694e0729 /src/csgterm.h | |
parent | 9e6cc9cebbfd5007a5fa9afabf57476676357193 (diff) |
Refactored normalization into a separate class, hard-limited normalization to stop at 5000 nodes to keep from normalizing 'forever'
Diffstat (limited to 'src/csgterm.h')
-rw-r--r-- | src/csgterm.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/csgterm.h b/src/csgterm.h index 4930349..2e72dbc 100644 --- a/src/csgterm.h +++ b/src/csgterm.h @@ -33,9 +33,6 @@ public: const BoundingBox &getBoundingBox() const { return this->bbox; } - static shared_ptr<CSGTerm> normalize(shared_ptr<CSGTerm> term); - static bool normalize_tail(shared_ptr<CSGTerm> &term); - std::string dump(); private: CSGTerm(type_e type, shared_ptr<CSGTerm> left, shared_ptr<CSGTerm> right); |