1*48518Sbostic /*- 2*48518Sbostic * Copyright (c) 1980 The Regents of the University of California. 3*48518Sbostic * All rights reserved. 4*48518Sbostic * 5*48518Sbostic * %sccs.include.proprietary.c% 619978Sdist */ 719978Sdist 815476Sralph #ifndef lint 9*48518Sbostic static char sccsid[] = "@(#)point.c 5.2 (Berkeley) 04/22/91"; 10*48518Sbostic #endif /* not lint */ 1115476Sralph 1215476Sralph #include "hp7221.h" 1315476Sralph 1415476Sralph point(xi,yi) 1515476Sralph int xi,yi; 1615476Sralph { 1715476Sralph if(scaleX(xi)!=currentx || scaleY(yi)!=currenty) 1815476Sralph move(xi,yi); 1915476Sralph cont(xi, yi); 2015476Sralph } 21