summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorJabier Arraiza <jabier.arraiza@marker.es>2018-04-01 02:08:05 +0000
committerJabier Arraiza <jabier.arraiza@marker.es>2018-04-01 02:08:05 +0000
commite3555269bcf758c55f7c8d5bc19434597b23593b (patch)
tree8c92f981831cc7edb9019c3782c2e5aa9e9d80e6 /src
parentAdd LPE Dash Stroke (diff)
downloadinkscape-e3555269bcf758c55f7c8d5bc19434597b23593b.tar.gz
inkscape-e3555269bcf758c55f7c8d5bc19434597b23593b.zip
Remove debug couts
Diffstat (limited to 'src')
-rw-r--r--src/live_effects/lpe-dash-stroke.cpp4
1 files changed, 0 insertions, 4 deletions
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;