BSD 4_3 release
[unix-history] / usr / src / usr.lib / libplot / vt0 / space.c
CommitLineData
23af587d 1#ifndef lint
95f51977 2static char sccsid[] = "@(#)space.c 4.2 (Berkeley) 11/10/83";
23af587d
SL
3#endif
4
5extern float boty;
6extern float botx;
7extern float oboty;
8extern float obotx;
9extern float scalex;
10extern float scaley;
25e033cd
RC
11float deltx = 4095.;
12float delty = 4095.;
23af587d
SL
13space(x0,y0,x1,y1){
14 botx = -2047.;
15 boty = -2047;
16 obotx = x0;
17 oboty = y0;
18 scalex = deltx/(x1-x0);
19 scaley = delty/(y1-y0);
20}