1*29815Ssklower /* 2*29815Ssklower * Copyright (c) 1980, 1986 Regents of the University of California. 3*29815Ssklower * All rights reserved. The Berkeley software License Agreement 4*29815Ssklower * specifies the terms and conditions for redistribution. 5*29815Ssklower */ 6*29815Ssklower 7*29815Ssklower #ifndef lint 8*29815Ssklower static char sccsid[] = "@(#)point.c 6.1 (Berkeley) 08/29/86"; 9*29815Ssklower #endif not lint 10*29815Ssklower 11*29815Ssklower 12*29815Ssklower #include "grnplot.h" 13*29815Ssklower 14*29815Ssklower /*--------------------------------------------------------- 15*29815Ssklower * This routine plots a single point. 16*29815Ssklower * 17*29815Ssklower * Results: None. 18*29815Ssklower * 19*29815Ssklower * Side Effects: 20*29815Ssklower * A single point is displayed on the screen. 21*29815Ssklower * The point is made the current point. 22*29815Ssklower *--------------------------------------------------------- 23*29815Ssklower */ 24*29815Ssklower point(x, y) 25*29815Ssklower int x, y; 26*29815Ssklower { 27*29815Ssklower move(x,y); 28*29815Ssklower label(POINTSTRING); 29*29815Ssklower } 30