/*- * Copyright (c) 1980, 1986 The Regents of the University of California. * All rights reserved. * * %sccs.include.proprietary.c% */ #ifndef lint static char sccsid[] = "@(#)point.c 6.2 (Berkeley) 04/22/91"; #endif /* not lint */ #include "grnplot.h" /*--------------------------------------------------------- * This routine plots a single point. * * Results: None. * * Side Effects: * A single point is displayed on the screen. * The point is made the current point. *--------------------------------------------------------- */ point(x, y) int x, y; { move(x,y); label(POINTSTRING); }