BSD 4_2 release
[unix-history] / usr / src / usr.lib / libplot / t300s / space.c
CommitLineData
8899e4c6 1#ifndef lint
0f4556f1 2static char sccsid[] = "@(#)space.c 4.1 (Berkeley) 6/27/83";
8899e4c6
SL
3#endif
4
5# include "con.h"
6float deltx = 4095.;
7float delty = 4095.;
8space(x0,y0,x1,y1){
9 botx = -2047.;
10 boty = -2047.;
11 obotx = x0;
12 oboty = y0;
13 scalex = deltx/(x1-x0);
14 scaley = delty/(y1-y0);
15}