xref: /csrg-svn/lib/libplot/gigi/move.c (revision 19974)
1*19974Sdist /*
2*19974Sdist  * Copyright (c) 1980 Regents of the University of California.
3*19974Sdist  * All rights reserved.  The Berkeley software License Agreement
4*19974Sdist  * specifies the terms and conditions for redistribution.
5*19974Sdist  */
6*19974Sdist 
715493Sralph #ifndef lint
8*19974Sdist static char sccsid[] = "@(#)move.c	5.1 (Berkeley) 05/07/85";
9*19974Sdist #endif not lint
1015493Sralph 
1115493Sralph #include "gigi.h"
1215493Sralph 
1315493Sralph move(xi,yi)
1415493Sralph int xi,yi;
1515493Sralph {
1615493Sralph 	currentx = xsc(xi);
1715493Sralph 	currenty = ysc(yi);
1815493Sralph 	printf("P[%d,%d]",currentx, currenty);
1915493Sralph }
20