date and time created 85/01/02 20:10:36 by jak
[unix-history] / usr / src / lib / libplot / bitgraph / cont.c
CommitLineData
9867de80
RC
1#ifndef lint
2static char sccsid[] = "@(#)cont.c 4.1 (Berkeley) %G%";
3#endif
4
5#include "bg.h"
6
7cont(xi,yi)
8int xi,yi;
9{
10 currentx = scaleX(xi);
11 currenty = scaleY(yi);
12 putchar( ESC );
13 printf(":%d;%dd", currentx, currenty);
14}