xref: /csrg-svn/lib/libplot/dumb/space.c (revision 15441)
1 #ifndef lint
2 static char sccsid[] = "@(#)space.c	4.1 (Berkeley) 11/10/83";
3 #endif
4 
5 #include "dumb.h"
6 
7 space(x0, y0, x1, y1)
8 	int x0, y0, x1, y1;
9 {
10 	minX = x0;
11 	rangeX = x1 -x0;
12 	minY = y0;
13 	rangeY = y1 - y0;
14 }
15