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