xref: /csrg-svn/lib/libplot/bitgraph/cont.c (revision 19851)
1*19851Sdist /*
2*19851Sdist  * Copyright (c) 1980 Regents of the University of California.
3*19851Sdist  * All rights reserved.  The Berkeley software License Agreement
4*19851Sdist  * specifies the terms and conditions for redistribution.
5*19851Sdist  */
6*19851Sdist 
715414Sralph #ifndef lint
8*19851Sdist static char sccsid[] = "@(#)cont.c	5.2 (Berkeley) 04/30/85";
9*19851Sdist #endif not lint
1015414Sralph 
11*19851Sdist 
1215414Sralph #include "bg.h"
1315414Sralph 
1415414Sralph cont(xi,yi)
1515414Sralph int xi,yi;
1615414Sralph {
1715414Sralph 	currentx = scaleX(xi);
1815414Sralph 	currenty = scaleY(yi);
1915414Sralph 	putchar( ESC );
2015414Sralph 	printf(":%d;%dd", currentx, currenty);
2115414Sralph }
22