date and time created 85/01/02 20:29:37 by jak
[unix-history] / usr / src / lib / libplot / hp7221 / move.c
CommitLineData
be30e50d
RC
1#ifndef lint
2static char sccsid[] = "@(#)move.c 4.1 (Berkeley) %G%";
3#endif
4
5#include "hp7221.h"
6
7move(xi,yi)
8int xi,yi;
9{
10 currentx = scaleX(xi);
11 currenty = scaleY(yi);
12 putchar( 'p' );
13 putMBP( currentx, currenty );
14}