diff options
author | Marius Kintel <marius@kintel.net> | 2011-09-09 03:53:05 (GMT) |
---|---|---|
committer | Marius Kintel <marius@kintel.net> | 2011-09-09 03:53:05 (GMT) |
commit | cbba974d3ac1edeb716a1384a2262ed5447fa9e6 (patch) | |
tree | 30708ef085204435d644c4ab685b87556628d22a /src/mainwin.cc | |
parent | 328897c1f28e0d438aa678891f8d5a45b114f267 (diff) |
Initial attempt of cleaning up polyset handling. PolySet no longer keeps a refcount, basic cache mechanism is in place, instantiating polysets are controlled through PolySetEvaluator
Diffstat (limited to 'src/mainwin.cc')
-rw-r--r-- | src/mainwin.cc | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/mainwin.cc b/src/mainwin.cc index 8dc1fea..2fd876c 100644 --- a/src/mainwin.cc +++ b/src/mainwin.cc @@ -790,6 +790,7 @@ void MainWindow::compileCSG(bool procevents) if (procevents) QApplication::processEvents(); } + psevaluator.printCache(); } catch (ProgressCancelException e) { PRINT("CSG generation cancelled."); @@ -1225,6 +1226,7 @@ void MainWindow::actionRenderCGAL() QHash<std::string, CGAL_Nef_polyhedron> cache; CGALEvaluator evaluator(cache, this->tree); this->root_N = new CGAL_Nef_polyhedron(evaluator.evaluateCGALMesh(*this->root_node)); + evaluator.psevaluator.printCache(); } catch (ProgressCancelException e) { PRINT("Rendering cancelled."); |