diff options
author | Marius Kintel <marius@kintel.net> | 2012-01-25 02:11:12 (GMT) |
---|---|---|
committer | Marius Kintel <marius@kintel.net> | 2012-01-25 02:11:12 (GMT) |
commit | eff1f7f8c91cee34c584a89c5d09e401c609f93e (patch) | |
tree | 543ae3bd3587dd3a97fbaa660ad9aaceb5a3823f /src/CGALEvaluator.cc | |
parent | 16c05eb533f94799a80f5b98c01e952e1cfe337b (diff) |
Ported printutils away from Qt
Diffstat (limited to 'src/CGALEvaluator.cc')
-rw-r--r-- | src/CGALEvaluator.cc | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/CGALEvaluator.cc b/src/CGALEvaluator.cc index bbf8cca..d44b5a9 100644 --- a/src/CGALEvaluator.cc +++ b/src/CGALEvaluator.cc @@ -87,7 +87,7 @@ void CGALEvaluator::process(CGAL_Nef_polyhedron &target, const CGAL_Nef_polyhedr catch (CGAL::Assertion_exception e) { // union && difference assert triggered by testdata/scad/bugs/rotate-diff-nonmanifold-crash.scad std::string opstr = op == CGE_UNION ? "union" : op == CGE_INTERSECTION ? "intersection" : op == CGE_DIFFERENCE ? "difference" : op == CGE_MINKOWSKI ? "minkowski" : "UNKNOWN"; - PRINTF("CGAL error in CGAL_Nef_polyhedron's %s operator: %s", opstr.c_str(), e.what()); + PRINTB("CGAL error in CGAL_Nef_polyhedron's %s operator: %s", opstr % e.what()); // Minkowski errors can result in corrupt polyhedrons if (op == CGE_MINKOWSKI) { @@ -357,7 +357,7 @@ void CGALEvaluator::addToParent(const State &state, const AbstractNode &node, co // Root node, insert into cache if (!isCached(node)) { if (!CGALCache::instance()->insert(this->tree.getIdString(node), N)) { - PRINTF("WARNING: CGAL Evaluator: Root node didn't fit into cache"); + PRINT("WARNING: CGAL Evaluator: Root node didn't fit into cache"); } } this->root = N; @@ -583,7 +583,7 @@ CGAL_Nef_polyhedron CGALEvaluator::evaluateCGALMesh(const PolySet &ps) pr.reduce(); int numpolygons_after = pr.polygons.size(); if (numpolygons_after < numpolygons_before) { - PRINTF("reduce polygons: %d -> %d", numpolygons_before, numpolygons_after); + PRINTB("reduce polygons: %d -> %d", numpolygons_before % numpolygons_after); } return CGAL_Nef_polyhedron(pr.toNef()); #endif @@ -632,7 +632,7 @@ CGAL_Nef_polyhedron CGALEvaluator::evaluateCGALMesh(const PolySet &ps) } } catch (CGAL::Assertion_exception e) { - PRINTF("CGAL error in CGAL_Nef_polyhedron3(): %s", e.what()); + PRINTB("CGAL error in CGAL_Nef_polyhedron3(): %s", e.what()); } CGAL::set_error_behaviour(old_behaviour); return CGAL_Nef_polyhedron(N); |