GRASS Programmer's Manual  6.5.svn(2012)-r51648
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Defines
psdriver/Draw_point.c
Go to the documentation of this file.
00001 #include "psdriver.h"
00002 
00003 void PS_draw_point(int x, int y)
00004 {
00005     output("%d %d POINT\n", x, y);
00006 }