[GRASS-SVN] r30876 - grass/branches/releasebranch_6_3/raster/r.digit

svn_grass at osgeo.org svn_grass at osgeo.org
Sun Apr 6 00:34:57 EDT 2008


Author: hamish
Date: 2008-04-06 00:34:56 -0400 (Sun, 06 Apr 2008)
New Revision: 30876

Modified:
   grass/branches/releasebranch_6_3/raster/r.digit/get_circle.c
Log:
fix: place guide line end at circle center coord (merge from HEAD)

Modified: grass/branches/releasebranch_6_3/raster/r.digit/get_circle.c
===================================================================
--- grass/branches/releasebranch_6_3/raster/r.digit/get_circle.c	2008-04-06 03:21:21 UTC (rev 30875)
+++ grass/branches/releasebranch_6_3/raster/r.digit/get_circle.c	2008-04-06 04:34:56 UTC (rev 30876)
@@ -48,8 +48,8 @@
     if (!get_point (&cx, &cy, east, north))
 	return 0;
 
-    px = cx+10;
-    py = cy+10;
+    px = cx;
+    py = cy;
     first = 1;
     do
     {



More information about the grass-commit mailing list