xref: /csrg-svn/lib/libplot/hp2648/point.c (revision 19975)
1*19975Sdist /*
2*19975Sdist  * Copyright (c) 1980 Regents of the University of California.
3*19975Sdist  * All rights reserved.  The Berkeley software License Agreement
4*19975Sdist  * specifies the terms and conditions for redistribution.
5*19975Sdist  */
6*19975Sdist 
715457Sralph #ifndef lint
8*19975Sdist static char sccsid[] = "@(#)point.c	5.1 (Berkeley) 05/07/85";
9*19975Sdist #endif not lint
1015457Sralph 
1115457Sralph #include "hp2648.h"
1215457Sralph 
1315457Sralph point(xi,yi)
1415457Sralph int xi,yi;
1515457Sralph {
1615457Sralph 	if(xsc(xi)!=currentx || ysc(yi)!=currenty)
1715457Sralph 		move(xi,yi);
1815457Sralph 	buffready(1);
1915457Sralph 	putchar('d');
2015457Sralph }
21