xref: /csrg-svn/lib/libplot/bitgraph/cont.c (revision 15414)
1*15414Sralph #ifndef lint
2*15414Sralph static char sccsid[] = "@(#)cont.c	4.1 (Berkeley) 11/10/83";
3*15414Sralph #endif
4*15414Sralph 
5*15414Sralph #include "bg.h"
6*15414Sralph 
7*15414Sralph cont(xi,yi)
8*15414Sralph int xi,yi;
9*15414Sralph {
10*15414Sralph 	currentx = scaleX(xi);
11*15414Sralph 	currenty = scaleY(yi);
12*15414Sralph 	putchar( ESC );
13*15414Sralph 	printf(":%d;%dd", currentx, currenty);
14*15414Sralph }
15