Revision: 3864
          http://matplotlib.svn.sourceforge.net/matplotlib/?rev=3864&view=rev
Author:   mdboom
Date:     2007-09-20 06:57:32 -0700 (Thu, 20 Sep 2007)

Log Message:
-----------
Simplification of marker paths.

Modified Paths:
--------------
    branches/transforms/lib/matplotlib/lines.py

Modified: branches/transforms/lib/matplotlib/lines.py
===================================================================
--- branches/transforms/lib/matplotlib/lines.py 2007-09-20 13:50:27 UTC (rev 
3863)
+++ branches/transforms/lib/matplotlib/lines.py 2007-09-20 13:57:32 UTC (rev 
3864)
@@ -815,7 +815,7 @@
                              path, self.get_transform())
 
                
-    _tickhoriz_path = Path([[0.0, 0.5], [1.0, 0.5]])
+    _tickhoriz_path = Path([[0.0, 0.5], [1.0, 0.5]], closed=False)
     def _draw_tickleft(self, renderer, gc, path):
         offset = renderer.points_to_pixels(self._markersize)
        marker_transform = Affine2D().scale(-offset, 1.0)
@@ -830,7 +830,7 @@
                              path, self.get_transform())
 
        
-    _tickvert_path = Path([[-0.5, 0.0], [-0.5, 1.0]])
+    _tickvert_path = Path([[-0.5, 0.0], [-0.5, 1.0]], closed=False)
     def _draw_tickup(self, renderer, gc, path):
         offset = renderer.points_to_pixels(self._markersize)
        marker_transform = Affine2D().scale(1.0, offset)


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 2005.
http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/
_______________________________________________
Matplotlib-checkins mailing list
Matplotlib-checkins@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/matplotlib-checkins

Reply via email to