new copyright notice
[unix-history] / usr / src / lib / libplot / t4014 / scale.c
CommitLineData
24e423e6
SL
1#ifndef lint
2static char sccsid[] = "@(#)scale.c 4.1 (Berkeley) %G%";
3#endif
4
5extern float scalex;
6extern float scaley;
7extern int scaleflag;
8scale(i,x,y)
9char i;
10float x,y;
11{
12 switch(i) {
13 default:
14 return;
15 case 'c':
16 x *= 2.54;
17 y *= 2.54;
18 case 'i':
19 x /= 200;
20 y /= 200;
21 case 'u':
22 scalex = 1/x;
23 scaley = 1/y;
24 }
25 scaleflag = 1;
26}