|
From: <md...@us...> - 2010-02-22 09:43:26
|
Revision: 8142
http://matplotlib.svn.sourceforge.net/matplotlib/?rev=8142&view=rev
Author: mdehoon
Date: 2010-02-22 09:43:19 +0000 (Mon, 22 Feb 2010)
Log Message:
-----------
Removing the check for path length; this seems not needed with recent
versions of cairo/pycairo.
Modified Paths:
--------------
trunk/matplotlib/lib/matplotlib/backends/backend_cairo.py
Modified: trunk/matplotlib/lib/matplotlib/backends/backend_cairo.py
===================================================================
--- trunk/matplotlib/lib/matplotlib/backends/backend_cairo.py 2010-02-18 14:54:30 UTC (rev 8141)
+++ trunk/matplotlib/lib/matplotlib/backends/backend_cairo.py 2010-02-22 09:43:19 UTC (rev 8142)
@@ -138,9 +138,6 @@
def draw_path(self, gc, path, transform, rgbFace=None):
- if len(path.vertices) > 18980:
- raise ValueError("The Cairo backend can not draw paths longer than 18980 points.")
-
ctx = gc.ctx
transform = transform + \
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|