[GRASS-SVN] r35245 - grass/trunk/display/d.graph
svn_grass at osgeo.org
svn_grass at osgeo.org
Tue Jan 6 21:46:08 EST 2009
Author: glynn
Date: 2009-01-06 21:46:07 -0500 (Tue, 06 Jan 2009)
New Revision: 35245
Modified:
grass/trunk/display/d.graph/do_graph.c
Log:
Don't perform u_to_d conversion for D_symbol() coordinates
Modified: grass/trunk/display/d.graph/do_graph.c
===================================================================
--- grass/trunk/display/d.graph/do_graph.c 2009-01-06 21:35:31 UTC (rev 35244)
+++ grass/trunk/display/d.graph/do_graph.c 2009-01-07 02:46:07 UTC (rev 35245)
@@ -334,8 +334,8 @@
return (-1);
}
- ix = D_u_to_d_col(xper);
- iy = D_u_to_d_row(yper);
+ ix = xper;
+ iy = yper;
size *= yincr;
/* parse line color */
More information about the grass-commit
mailing list