date and time created 85/01/02 20:29:49 by jak
[unix-history] / usr / src / lib / libplot / bitgraph / move.c
#ifndef lint
static char sccsid[] = "@(#)move.c 4.1 (Berkeley) %G%";
#endif
#include "bg.h"
move(xi,yi)
int xi,yi;
{
currentx = scaleX(xi);
currenty = scaleY(yi);
putchar( ESC );
printf(":%d;%dm", currentx, currenty);
}