From 6ba89a09d39f1f8cd8c0031c4694ec56e4307aaf Mon Sep 17 00:00:00 2001 From: Craig Watson Date: Sat, 16 Sep 2017 19:53:11 -0400 Subject: [PATCH] Commented out debug messages --- src/domain/UBGraphicsStroke.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/domain/UBGraphicsStroke.cpp b/src/domain/UBGraphicsStroke.cpp index 49f82b2f..7349e70b 100644 --- a/src/domain/UBGraphicsStroke.cpp +++ b/src/domain/UBGraphicsStroke.cpp @@ -212,7 +212,7 @@ UBGraphicsStroke* UBGraphicsStroke::simplify() newStroke->mDrawnPoints = QList(mDrawnPoints); QList& points = newStroke->mDrawnPoints; - qDebug() << "Simplifying. Before: " << points.size() << " points and " << polygons().size() << " polygons"; + //qDebug() << "Simplifying. Before: " << points.size() << " points and " << polygons().size() << " polygons"; /* Basic simplifying algorithm: consider A, B and C the current point and the two following ones. * If the angle between (AB) and (BC) is lower than a certain threshold, @@ -321,7 +321,7 @@ UBGraphicsStroke* UBGraphicsStroke::simplify() poly->setStroke(newStroke); } - qDebug() << "After: " << points.size() << " points and " << newStroke->polygons().size() << " polygons"; + //qDebug() << "After: " << points.size() << " points and " << newStroke->polygons().size() << " polygons"; return newStroke; }