|
From: <md...@us...> - 2008-05-08 17:24:24
|
Revision: 5132
http://matplotlib.svn.sourceforge.net/matplotlib/?rev=5132&view=rev
Author: mdboom
Date: 2008-05-08 10:24:15 -0700 (Thu, 08 May 2008)
Log Message:
-----------
Don't rasterize quadmeshes by default -- rasterizing is still somewhat
experimental, so saving for after upcoming 0.98 beta release.
Modified Paths:
--------------
trunk/matplotlib/lib/matplotlib/collections.py
Modified: trunk/matplotlib/lib/matplotlib/collections.py
===================================================================
--- trunk/matplotlib/lib/matplotlib/collections.py 2008-05-08 16:49:50 UTC (rev 5131)
+++ trunk/matplotlib/lib/matplotlib/collections.py 2008-05-08 17:24:15 UTC (rev 5132)
@@ -484,13 +484,11 @@
offsets = transOffset.transform_non_affine(offsets)
transOffset = transOffset.get_affine()
- renderer.start_rasterizing()
renderer.draw_quad_mesh(
transform.frozen(), self.clipbox, clippath, clippath_trans,
self._meshWidth, self._meshHeight, self._coordinates,
offsets, transOffset, self._facecolors, self._antialiased,
self._showedges)
- renderer.stop_rasterizing()
renderer.close_group(self.__class__.__name__)
class PolyCollection(Collection):
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|