File tree Expand file tree Collapse file tree 1 file changed +0
-5
lines changed Expand file tree Collapse file tree 1 file changed +0
-5
lines changed Original file line number Diff line number Diff line change 10
10
#include " mplutils.h"
11
11
#include " agg_conv_segmentator.h"
12
12
13
- #include < iostream>
14
-
15
13
/*
16
14
This file contains a number of vertex converters that modify
17
15
paths. They all work as iterators, where the output is generated
@@ -746,7 +744,6 @@ class PathSimplifier : protected EmbeddedQueue<9>
746
744
}
747
745
} else {
748
746
if (paradNorm2 > m_dnorm2BackwardMax) {
749
- // std::cout << "next backwards\n";
750
747
m_lastBackwardMax = true ;
751
748
m_dnorm2BackwardMax = paradNorm2;
752
749
m_nextBackwardX = *x;
@@ -766,7 +763,6 @@ class PathSimplifier : protected EmbeddedQueue<9>
766
763
/* If the line needs to extend in the opposite direction from the
767
764
direction we are drawing in, move back to we start drawing from
768
765
back there. */
769
- // std::cout << "at this push " << m_dnorm2BackwardMax;
770
766
_push (x, y);
771
767
772
768
break ;
@@ -829,7 +825,6 @@ class PathSimplifier : protected EmbeddedQueue<9>
829
825
/* If we observed any backward (anti-parallel) vectors, then
830
826
we need to move to the furthest backward point. */
831
827
if (m_dnorm2BackwardMax > 0.0 ) {
832
- // std::cout << "pushing backward points\n";
833
828
queue_push (agg::path_cmd_line_to, m_nextBackwardX, m_nextBackwardY);
834
829
}
835
830
You can’t perform that action at this time.
0 commit comments