xref: /csrg-svn/lib/libplot/hp7221/move.c (revision 48518)
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 
815474Sralph #ifndef lint
9*48518Sbostic static char sccsid[] = "@(#)move.c	5.2 (Berkeley) 04/22/91";
10*48518Sbostic #endif /* not lint */
1115474Sralph 
1215474Sralph #include "hp7221.h"
1315474Sralph 
1415474Sralph move(xi,yi)
1515474Sralph int xi,yi;
1615474Sralph {
1715474Sralph 	currentx = scaleX(xi);
1815474Sralph 	currenty = scaleY(yi);
1915474Sralph 	putchar( 'p' );
2015474Sralph 	putMBP( currentx, currenty );
2115474Sralph }
22