8000 removing commented prints from path_converters · matplotlib/matplotlib@38e6906 · GitHub
[go: up one dir, main page]

Skip to content

Commit 38e6906

Browse files
committed
removing commented prints from path_converters
1 parent 1549197 commit 38e6906

File tree

1 file changed

+0
-5
lines changed

1 file changed

+0
-5
lines changed

src/path_converters.h

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,6 @@
1010
#include "mplutils.h"
1111
#include "agg_conv_segmentator.h"
1212

13-
#include <iostream>
14-
1513
/*
1614
This file contains a number of vertex converters that modify
1715
paths. They all work as iterators, where the output is generated
@@ -746,7 +744,6 @@ class PathSimplifier : protected EmbeddedQueue<9>
746744
}
747745
} else {
748746
if (paradNorm2 > m_dnorm2BackwardMax) {
749-
// std::cout << "next backwards\n";
750747
m_lastBackwardMax = true;
751748
m_dnorm2BackwardMax = paradNorm2;
752749
m_nextBackwardX = *x;
@@ -766,7 +763,6 @@ class PathSimplifier : protected EmbeddedQueue<9>
766763
/* If the line needs to extend in the opposite direction from the
767764
direction we are drawing in, move back to we start drawing from
768765
back there. */
769-
// std::cout << "at this push " << m_dnorm2BackwardMax;
770766
_push(x, y);
771767

772768
break;
@@ -829,7 +825,6 @@ class PathSimplifier : protected EmbeddedQueue<9>
829825
/* If we observed any backward (anti-parallel) vectors, then
830826
we need to move to the furthest backward point. */
831827
if (m_dnorm2BackwardMax > 0.0) {
832-
// std::cout << "pushing backward points\n";
833828
queue_push(agg::path_cmd_line_to, m_nextBackwardX, m_nextBackwardY);
834829
}
835830

0 commit comments

Comments
 (0)
0