xref: /csrg-svn/lib/libplot/hp2648/point.c (revision 61393)
148517Sbostic /*-
2*61393Sbostic  * Copyright (c) 1980, 1993
3*61393Sbostic  *	The Regents of the University of California.  All rights reserved.
448517Sbostic  *
548517Sbostic  * %sccs.include.proprietary.c%
619975Sdist  */
719975Sdist 
815457Sralph #ifndef lint
9*61393Sbostic static char sccsid[] = "@(#)point.c	8.1 (Berkeley) 06/04/93";
1048517Sbostic #endif /* not lint */
1115457Sralph 
1215457Sralph #include "hp2648.h"
1315457Sralph 
point(xi,yi)1415457Sralph point(xi,yi)
1515457Sralph int xi,yi;
1615457Sralph {
1715457Sralph 	if(xsc(xi)!=currentx || ysc(yi)!=currenty)
1815457Sralph 		move(xi,yi);
1915457Sralph 	buffready(1);
2015457Sralph 	putchar('d');
2115457Sralph }
22