xref: /csrg-svn/lib/libplot/grn/point.c (revision 61391)
148511Sbostic /*-
2*61391Sbostic  * Copyright (c) 1980, 1986, 1993
3*61391Sbostic  *	The Regents of the University of California.  All rights reserved.
448511Sbostic  *
548511Sbostic  * %sccs.include.proprietary.c%
629815Ssklower  */
729815Ssklower 
829815Ssklower #ifndef lint
9*61391Sbostic static char sccsid[] = "@(#)point.c	8.1 (Berkeley) 06/04/93";
1048511Sbostic #endif /* not lint */
1129815Ssklower 
1229815Ssklower #include "grnplot.h"
1329815Ssklower 
1429815Ssklower /*---------------------------------------------------------
1529815Ssklower  *	This routine plots a single point.
1629815Ssklower  *
1729815Ssklower  *	Results:	None.
1829815Ssklower  *
1929815Ssklower  *	Side Effects:
2029815Ssklower  *	A single point is displayed on the screen.
2129815Ssklower  *	The point is made the current point.
2229815Ssklower  *---------------------------------------------------------
2329815Ssklower  */
point(x,y)2429815Ssklower point(x, y)
2529815Ssklower int x, y;
2629815Ssklower {
2729815Ssklower 	move(x,y);
2829815Ssklower 	label(POINTSTRING);
2929815Ssklower }
30