|
From: <jd...@us...> - 2008-06-20 14:35:33
|
Revision: 5613
http://matplotlib.svn.sourceforge.net/matplotlib/?rev=5613&view=rev
Author: jdh2358
Date: 2008-06-20 07:35:21 -0700 (Fri, 20 Jun 2008)
Log Message:
-----------
removed some debug prints
Modified Paths:
--------------
trunk/matplotlib/lib/matplotlib/figure.py
Modified: trunk/matplotlib/lib/matplotlib/figure.py
===================================================================
--- trunk/matplotlib/lib/matplotlib/figure.py 2008-06-20 14:21:56 UTC (rev 5612)
+++ trunk/matplotlib/lib/matplotlib/figure.py 2008-06-20 14:35:21 UTC (rev 5613)
@@ -796,7 +796,6 @@
if len(self.images)<=1 or renderer.option_image_nocomposite() or not allequal([im.origin for im in self.images]):
for im in self.images:
- print 'drawing', im
im.draw(renderer)
else:
# make a composite image blending alpha
@@ -811,9 +810,6 @@
im.is_grayscale = False
l, b, w, h = self.bbox.bounds
clippath, affine = self.get_transformed_clip_path_and_affine()
- print 'compodite'
- print 'clippath', affine
- print 'affine', affine
renderer.draw_image(l, b, im, self.bbox,
clippath, affine)
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|