date and time created 83/11/10 14:44:31 by ralph
[unix-history] / usr / src / lib / libplot / dumb / space.c
CommitLineData
8cb74b5c
RC
1#ifndef lint
2static char sccsid[] = "@(#)space.c 4.1 (Berkeley) %G%";
3#endif
4
5#include "dumb.h"
6
7space(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}