Revision: 4703
          http://matplotlib.svn.sourceforge.net/matplotlib/?rev=4703&view=rev
Author:   mdboom
Date:     2007-12-12 05:55:12 -0800 (Wed, 12 Dec 2007)

Log Message:
-----------
Layout fix.

Modified Paths:
--------------
    branches/transforms/src/_path.cpp

Modified: branches/transforms/src/_path.cpp
===================================================================
--- branches/transforms/src/_path.cpp   2007-12-12 13:54:56 UTC (rev 4702)
+++ branches/transforms/src/_path.cpp   2007-12-12 13:55:12 UTC (rev 4703)
@@ -141,7 +141,7 @@
 
             // The following cases denote the beginning on a new subpath
             if (code == agg::path_cmd_stop ||
-                (code & agg::path_cmd_end_poly) == agg::path_cmd_end_poly)
+               (code & agg::path_cmd_end_poly) == agg::path_cmd_end_poly)
             {
                 x = sx;
                 y = sy;
@@ -184,7 +184,7 @@
             vty1 = y;
         }
         while (code != agg::path_cmd_stop &&
-               (code & agg::path_cmd_end_poly) != agg::path_cmd_end_poly);
+              (code & agg::path_cmd_end_poly) != agg::path_cmd_end_poly);
 
         yflag1 = (vty1 >= ty);
         if (yflag0 != yflag1)


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

-------------------------------------------------------------------------
SF.Net email is sponsored by: 
Check out the new SourceForge.net Marketplace.
It's the best place to buy or sell services for
just about anything Open Source.
http://sourceforge.net/services/buy/index.php
_______________________________________________
Matplotlib-checkins mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/matplotlib-checkins

Reply via email to