1*19978Sdist /* 2*19978Sdist * Copyright (c) 1980 Regents of the University of California. 3*19978Sdist * All rights reserved. The Berkeley software License Agreement 4*19978Sdist * specifies the terms and conditions for redistribution. 5*19978Sdist */ 6*19978Sdist 715467Sralph #ifndef lint 8*19978Sdist static char sccsid[] = "@(#)cont.c 5.1 (Berkeley) 05/07/85"; 9*19978Sdist #endif not lint 1015467Sralph 1115467Sralph #include "hp7221.h" 1215467Sralph 1315467Sralph cont(xi,yi) 1415467Sralph int xi,yi; 1515467Sralph { 1615467Sralph currentx = scaleX(xi); 1715467Sralph currenty = scaleY(yi); 1815467Sralph putchar( 'q' ); 1915467Sralph putMBP( currentx, currenty ); 2015467Sralph } 21