1*15476Sralph #ifndef lint 2*15476Sralph static char sccsid[] = "@(#)point.c 4.1 (Berkeley) 11/10/83"; 3*15476Sralph #endif 4*15476Sralph 5*15476Sralph #include "hp7221.h" 6*15476Sralph 7*15476Sralph point(xi,yi) 8*15476Sralph int xi,yi; 9*15476Sralph { 10*15476Sralph if(scaleX(xi)!=currentx || scaleY(yi)!=currenty) 11*15476Sralph move(xi,yi); 12*15476Sralph cont(xi, yi); 13*15476Sralph } 14