Revision: 6794
          http://matplotlib.svn.sourceforge.net/matplotlib/?rev=6794&view=rev
Author:   mdboom
Date:     2009-01-16 18:45:39 +0000 (Fri, 16 Jan 2009)

Log Message:
-----------
Use miter_join_revert in Agg backend to match behavior of other backends.

Modified Paths:
--------------
    trunk/matplotlib/src/_backend_agg.cpp

Modified: trunk/matplotlib/src/_backend_agg.cpp
===================================================================
--- trunk/matplotlib/src/_backend_agg.cpp       2009-01-16 18:45:18 UTC (rev 
6793)
+++ trunk/matplotlib/src/_backend_agg.cpp       2009-01-16 18:45:39 UTC (rev 
6794)
@@ -209,7 +209,7 @@
   std::string joinstyle = Py::String( gc.getAttr("_joinstyle") );
 
   if (joinstyle=="miter")
-    join =  agg::miter_join;
+    join =  agg::miter_join_revert;
   else if (joinstyle=="round")
     join = agg::round_join;
   else if(joinstyle=="bevel")


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:
SourcForge Community
SourceForge wants to tell your story.
http://p.sf.net/sfu/sf-spreadtheword
_______________________________________________
Matplotlib-checkins mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/matplotlib-checkins

Reply via email to