date and time created 85/01/02 20:10:45 by jak
[unix-history] / usr / src / lib / libplot / gigi / space.c
CommitLineData
50730010
RC
1#ifndef lint
2static char sccsid[] = "@(#)space.c 4.1 (Berkeley) %G%";
3#endif
4
5#include "gigi.h"
6
7space(x0,y0,x1,y1)
8int x0,y0,x1,y1;
9{
10 lowx = x0;
11 lowy = y0;
12 scalex = XMAX/(x1-lowx);
13 scaley = YMAX/(y1-lowy);
14}