1*48511Sbostic /*- 2*48511Sbostic * Copyright (c) 1980, 1986 The Regents of the University of California. 3*48511Sbostic * All rights reserved. 4*48511Sbostic * 5*48511Sbostic * %sccs.include.proprietary.c% 629815Ssklower */ 729815Ssklower 829815Ssklower #ifndef lint 9*48511Sbostic static char sccsid[] = "@(#)point.c 6.2 (Berkeley) 04/22/91"; 10*48511Sbostic #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 */ 2429815Ssklower point(x, y) 2529815Ssklower int x, y; 2629815Ssklower { 2729815Ssklower move(x,y); 2829815Ssklower label(POINTSTRING); 2929815Ssklower } 30