|
From: <ds...@us...> - 2007-07-19 21:39:58
|
Revision: 3579
http://matplotlib.svn.sourceforge.net/matplotlib/?rev=3579&view=rev
Author: dsdale
Date: 2007-07-19 13:24:30 -0700 (Thu, 19 Jul 2007)
Log Message:
-----------
fix polar plots, recovered two lines accidentally deleted in _backend_agg.cpp
Modified Paths:
--------------
trunk/matplotlib/lib/matplotlib/texmanager.py
trunk/matplotlib/mpl1/mtraits.py
trunk/matplotlib/src/_backend_agg.cpp
Modified: trunk/matplotlib/lib/matplotlib/texmanager.py
===================================================================
--- trunk/matplotlib/lib/matplotlib/texmanager.py 2007-07-19 18:40:08 UTC (rev 3578)
+++ trunk/matplotlib/lib/matplotlib/texmanager.py 2007-07-19 20:24:30 UTC (rev 3579)
@@ -134,7 +134,8 @@
self.font_info[font.lower()])
break
else:
- warnings.warn('No LaTeX-compatible font found for the %s font family in rcParams. Using default.' % ff)
+ mpl.verbose.report('No LaTeX-compatible font found for \
+the %s font family in rcParams. Using default.' % ff, 'helpful')
setattr(self, font_family_attr, font_family)
fontconfig.append(getattr(self, font_family_attr)[0])
self._fontconfig = ''.join(fontconfig)
Modified: trunk/matplotlib/mpl1/mtraits.py
===================================================================
--- trunk/matplotlib/mpl1/mtraits.py 2007-07-19 18:40:08 UTC (rev 3578)
+++ trunk/matplotlib/mpl1/mtraits.py 2007-07-19 20:24:30 UTC (rev 3579)
@@ -8,7 +8,8 @@
wget http://peak.telecommunity.com/dist/ez_setup.py
sudo python ez_setup.py
- sudo easy_install -f http://code.enthought.com/enstaller/eggs/source/unstable/ "enthought.etsconfig <3.0a" "enthought.util <3.0a" "enthought.debug <3.0a"
+ sudo easy_install -f http://code.enthought.com/enstaller/eggs/source/unstable/ \
+"enthought.etsconfig <3.0a" "enthought.util <3.0a" "enthought.debug <3.0a"
svn co https://svn.enthought.com/svn/enthought/branches/enthought.traits_2.0 enthought_traits
Modified: trunk/matplotlib/src/_backend_agg.cpp
===================================================================
--- trunk/matplotlib/src/_backend_agg.cpp 2007-07-19 18:40:08 UTC (rev 3578)
+++ trunk/matplotlib/src/_backend_agg.cpp 2007-07-19 20:24:30 UTC (rev 3579)
@@ -1528,6 +1528,8 @@
GCAgg gc = GCAgg(args[0], dpi, snapto);
set_clipbox_rasterizer(gc.cliprect);
+ //path_t transpath(path, xytrans);
+ _process_alpha_mask(gc);
Transformation* mpltransform = static_cast<Transformation*>(args[3].ptr());
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|