xref: /csrg-svn/lib/libplot/dumb/point.c (revision 48505)
1*48505Sbostic /*-
2*48505Sbostic  * Copyright (c) 1980 The Regents of the University of California.
3*48505Sbostic  * All rights reserved.
4*48505Sbostic  *
5*48505Sbostic  * %sccs.include.proprietary.c%
619971Sdist  */
719971Sdist 
815440Sralph #ifndef lint
9*48505Sbostic static char sccsid[] = "@(#)point.c	5.2 (Berkeley) 04/22/91";
10*48505Sbostic #endif /* not lint */
1115440Sralph 
1215440Sralph #include "dumb.h"
1315440Sralph 
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