From: <md...@us...> - 2007-10-23 19:20:27
|
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. |