xref: /csrg-svn/lib/libplot/gigi/cont.c (revision 61386)
148508Sbostic /*-
2*61386Sbostic  * Copyright (c) 1980, 1993
3*61386Sbostic  *	The Regents of the University of California.  All rights reserved.
448508Sbostic  *
548508Sbostic  * %sccs.include.proprietary.c%
619974Sdist  */
719974Sdist 
815502Sralph #ifndef lint
9*61386Sbostic static char sccsid[] = "@(#)cont.c	8.1 (Berkeley) 06/04/93";
1048508Sbostic #endif /* not lint */
1115502Sralph 
1215502Sralph #include "gigi.h"
1315502Sralph 
cont(xi,yi)1415502Sralph cont(xi,yi)
1515502Sralph int xi,yi;
1615502Sralph {
1715502Sralph 	currentx = xsc(xi);
1815502Sralph 	currenty = ysc(yi);
1915502Sralph 	printf("V[%d,%d]",currentx, currenty);
2015502Sralph }
21