xref: /csrg-svn/lib/libplot/hp2648/point.c (revision 15457)
1*15457Sralph #ifndef lint
2*15457Sralph static char sccsid[] = "@(#)point.c	4.1 (Berkeley) 11/10/83";
3*15457Sralph #endif
4*15457Sralph 
5*15457Sralph #include "hp2648.h"
6*15457Sralph 
7*15457Sralph point(xi,yi)
8*15457Sralph int xi,yi;
9*15457Sralph {
10*15457Sralph 	if(xsc(xi)!=currentx || ysc(yi)!=currenty)
11*15457Sralph 		move(xi,yi);
12*15457Sralph 	buffready(1);
13*15457Sralph 	putchar('d');
14*15457Sralph }
15