From e3555269bcf758c55f7c8d5bc19434597b23593b Mon Sep 17 00:00:00 2001 From: Jabier Arraiza Date: Sun, 1 Apr 2018 04:08:05 +0200 Subject: Remove debug couts --- src/live_effects/lpe-dash-stroke.cpp | 4 ---- 1 file changed, 4 deletions(-) (limited to 'src') diff --git a/src/live_effects/lpe-dash-stroke.cpp b/src/live_effects/lpe-dash-stroke.cpp index 618ba60a3..1ad1da260 100644 --- a/src/live_effects/lpe-dash-stroke.cpp +++ b/src/live_effects/lpe-dash-stroke.cpp @@ -196,8 +196,6 @@ LPEDashStroke::doEffect_path(Geom::PathVector const & path_in){ } else { end = timeAtLength(dashsize,pwd2); } - std::cout << end << "end" << std::endl; - std::cout << start << "start" << std::endl; result.push_back((*path_it).portion(start, end)); start_index = result.size()-1; double startsize = dashsize + holesize; @@ -208,8 +206,6 @@ LPEDashStroke::doEffect_path(Geom::PathVector const & path_in){ start = timeAtLength(startsize,pwd2); end = timeAtLength(endsize,pwd2); while (start < (*path_it).size() && start > 0) { - std::cout << end << "end" << std::endl; - std::cout << start << "start" << std::endl; result.push_back((*path_it).portion(start, end)); startsize = endsize + holesize; endsize = startsize + dashsize; -- cgit v1.2.3