xref: /csrg-svn/lib/libplot/dumb/point.c (revision 15440)
1*15440Sralph #ifndef lint
2*15440Sralph static char sccsid[] = "@(#)point.c	4.1 (Berkeley) 11/10/83";
3*15440Sralph #endif
4*15440Sralph 
5*15440Sralph #include "dumb.h"
6*15440Sralph 
7*15440Sralph point(x, y)
8*15440Sralph 	int x,y;
9*15440Sralph {
10*15440Sralph 	scale(x, y);
11*15440Sralph 	currentx = x;
12*15440Sralph 	currenty = y;
13*15440Sralph 	screenmat[currentx][currenty] = '*';
14*15440Sralph }
15