Revision: 3988
          http://matplotlib.svn.sourceforge.net/matplotlib/?rev=3988&view=rev
Author:   mdboom
Date:     2007-10-23 12:20:21 -0700 (Tue, 23 Oct 2007)

Log Message:
-----------
Reduce tendency to use aliased drawing.

Modified Paths:
--------------
    branches/transforms/src/_backend_agg.cpp

Modified: branches/transforms/src/_backend_agg.cpp
===================================================================
--- branches/transforms/src/_backend_agg.cpp    2007-10-23 19:16:11 UTC (rev 
3987)
+++ branches/transforms/src/_backend_agg.cpp    2007-10-23 19:20:21 UTC (rev 
3988)
@@ -434,7 +434,7 @@
     }
 
     trans.transform(&x1, &y1);
-    if (!(fabs(x0 - x1) < 0.1 || fabs(y0 - y1) < 0.1)) {
+    if (!(fabs(x0 - x1) < 0.001 || fabs(y0 - y1) < 0.001)) {
       path.rewind(0);
       return false;
     }


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: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >> http://get.splunk.com/
_______________________________________________
Matplotlib-checkins mailing list
Matplotlib-checkins@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/matplotlib-checkins

Reply via email to