Revision: 4902
          http://matplotlib.svn.sourceforge.net/matplotlib/?rev=4902&view=rev
Author:   mdboom
Date:     2008-01-28 05:28:20 -0800 (Mon, 28 Jan 2008)

Log Message:
-----------
Fix "gap" bug (Thanks Eric Firing)

Modified Paths:
--------------
    trunk/matplotlib/src/agg_py_path_iterator.h

Modified: trunk/matplotlib/src/agg_py_path_iterator.h
===================================================================
--- trunk/matplotlib/src/agg_py_path_iterator.h 2008-01-27 15:17:28 UTC (rev 
4901)
+++ trunk/matplotlib/src/agg_py_path_iterator.h 2008-01-28 13:28:20 UTC (rev 
4902)
@@ -366,7 +366,7 @@
             //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


This was sent by the SourceForge.net collaborative development platform, the 
world's largest Open Source development site.

-------------------------------------------------------------------------
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2008.
http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/
_______________________________________________
Matplotlib-checkins mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/matplotlib-checkins

Reply via email to