浏览代码

document the difference between two similar named functions. todo: doxygenize

git-svn-id: https://svn.osgeo.org/grass/grass/trunk@56822 15284696-431f-4ddb-bdfa-cd5b030d7da7
Hamish Bowman 12 年之前
父节点
当前提交
2ebc426ba7
共有 1 个文件被更改,包括 4 次插入0 次删除
  1. 4 0
      lib/display/draw2.c

+ 4 - 0
lib/display/draw2.c

@@ -213,6 +213,8 @@ void D_get_text_box(const char *text, double *t, double *b, double *l, double *r
 
 /******************************************************************************/
 
+/* D_pos_abs(easting, northing):  move to an absolute position
+	on the display using map coordinates */
 void D_pos_abs(double x, double y)
 {
     cur.x = x;
@@ -295,6 +297,8 @@ void D_end(void)
 {
 }
 
+/* D_move_abs(x,y):  move to an absolute position on the display using
+	display pixel coordinates */
 void D_move_abs(double x, double y)
 {
     path_move(&path, x, y);