GRASS Programmer's Manual
6.4.2(2012)
|
00001 #include <grass/gis.h> 00002 00003 #include <grass/raster.h> 00004 #include <grass/graphics.h> 00005 #include "transport.h" 00006 00007 void R_get_location_with_box(int cx, int cy, int *wx, int *wy, int *button) 00008 { 00009 trans->get_location_with_box(cx, cy, wx, wy, button); 00010 } 00011 00012 void R_get_location_with_line(int cx, int cy, int *wx, int *wy, int *button) 00013 { 00014 trans->get_location_with_line(cx, cy, wx, wy, button); 00015 } 00016 00017 void R_get_location_with_pointer(int *wx, int *wy, int *button) 00018 { 00019 trans->get_location_with_pointer(wx, wy, button); 00020 }