new template
[unix-history] / usr / src / lib / libplot / t450 / space.c
CommitLineData
6f73f2c8
SL
1#ifndef lint
2static char sccsid[] = "@(#)space.c 4.1 (Berkeley) %G%";
3#endif
4
5# include "con.h"
6space(x0,y0,x1,y1){
7 botx = -2047.;
8 boty = -2047.;
9 obotx = x0;
10 oboty = y0;
11 scalex = 4096./(x1-x0);
12 scaley = 4096./(y1-y0);
13}