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