xref: /csrg-svn/lib/libplot/dumb/point.c (revision 61365)
148505Sbostic /*-
2*61365Sbostic  * Copyright (c) 1980, 1993
3*61365Sbostic  *	The Regents of the University of California.  All rights reserved.
448505Sbostic  *
548505Sbostic  * %sccs.include.proprietary.c%
619971Sdist  */
719971Sdist 
815440Sralph #ifndef lint
9*61365Sbostic static char sccsid[] = "@(#)point.c	8.1 (Berkeley) 06/04/93";
1048505Sbostic #endif /* not lint */
1115440Sralph 
1215440Sralph #include "dumb.h"
1315440Sralph 
point(x,y)1415440Sralph point(x, y)
1515440Sralph 	int x,y;
1615440Sralph {
1715440Sralph 	scale(x, y);
1815440Sralph 	currentx = x;
1915440Sralph 	currenty = y;
2015440Sralph 	screenmat[currentx][currenty] = '*';
2115440Sralph }
22