Skip to content

Commit

Permalink
Fix "gap" bug (Thanks Eric Firing)
Browse files Browse the repository at this point in the history
svn path=/trunk/matplotlib/; revision=4902
  • Loading branch information
mdboom committed Jan 28, 2008
1 parent c7e24a9 commit dd2b73c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/agg_py_path_iterator.h
Original file line number Diff line number Diff line change
Expand Up @@ -366,7 +366,7 @@ class SimplifyPath
//direction we are drawing in, move back to we start drawing from
//back there.
if (m_haveMin)
m_queue[m_queue_write++].set(agg::path_cmd_move_to, m_minX, m_minY);
m_queue[m_queue_write++].set(agg::path_cmd_line_to, m_minX, m_minY);
m_queue[m_queue_write++].set(agg::path_cmd_line_to, m_maxX, m_maxY);

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

0 comments on commit dd2b73c

Please sign in to comment.