[GRASS-SVN] r52523 - grass/trunk/lib/vector/Vlib

svn_grass at osgeo.org svn_grass at osgeo.org
Sat Aug 4 12:00:54 PDT 2012


Author: mmetz
Date: 2012-08-04 12:00:54 -0700 (Sat, 04 Aug 2012)
New Revision: 52523

Modified:
   grass/trunk/lib/vector/Vlib/dgraph.c
Log:
Vlib dgraph.c: use GRASS_EPSILON

Modified: grass/trunk/lib/vector/Vlib/dgraph.c
===================================================================
--- grass/trunk/lib/vector/Vlib/dgraph.c	2012-08-04 18:33:38 UTC (rev 52522)
+++ grass/trunk/lib/vector/Vlib/dgraph.c	2012-08-04 19:00:54 UTC (rev 52523)
@@ -220,7 +220,8 @@
     int i, j, np;
     int group, t;
     int looped;
-    double EPSILON = 0.00000001;
+    /* double EPSILON = 0.00000001; */
+    double EPSILON = GRASS_EPSILON;
     double *x, *y;
     double x1, y1, x2, y2;
     int res;



More information about the grass-commit mailing list