Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit dd2b73c

Browse files
committed
Fix "gap" bug (Thanks Eric Firing)
svn path=/trunk/matplotlib/; revision=4902
1 parent c7e24a9 commit dd2b73c

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/agg_py_path_iterator.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -366,7 +366,7 @@ class SimplifyPath
366366
//direction we are drawing in, move back to we start drawing from
367367
//back there.
368368
if (m_haveMin)
369-
m_queue[m_queue_write++].set(agg::path_cmd_move_to, m_minX, m_minY);
369+
m_queue[m_queue_write++].set(agg::path_cmd_line_to, m_minX, m_minY);
370370
m_queue[m_queue_write++].set(agg::path_cmd_line_to, m_maxX, m_maxY);
371371

372372
//if we clipped some segments between this line and the next line

0 commit comments

Comments
 (0)