xref: /csrg-svn/lib/libplot/gigi/move.c (revision 15493)
1*15493Sralph #ifndef lint
2*15493Sralph static char sccsid[] = "@(#)move.c	4.1 (Berkeley) 11/10/83";
3*15493Sralph #endif
4*15493Sralph 
5*15493Sralph #include "gigi.h"
6*15493Sralph 
7*15493Sralph move(xi,yi)
8*15493Sralph int xi,yi;
9*15493Sralph {
10*15493Sralph 	currentx = xsc(xi);
11*15493Sralph 	currenty = ysc(yi);
12*15493Sralph 	printf("P[%d,%d]",currentx, currenty);
13*15493Sralph }
14