1 |
– |
/* Copyright (c) 1991 Regents of the University of California */ |
2 |
– |
|
1 |
|
#ifndef lint |
2 |
< |
static char SCCSid[] = "$SunId$ LBL"; |
2 |
> |
static const char RCSid[] = "$Id$"; |
3 |
|
#endif |
6 |
– |
|
4 |
|
/* |
5 |
|
* Program to convert lamp color from table and compute radiance. |
6 |
|
*/ |
7 |
|
|
8 |
|
#include <stdio.h> |
9 |
|
|
10 |
+ |
#include <math.h> |
11 |
+ |
|
12 |
+ |
#include "color.h" |
13 |
+ |
|
14 |
|
#define PI 3.14159265358979323846 |
15 |
|
|
16 |
|
extern char *gets(), *strcpy(); |
16 |
– |
extern double atof(); |
17 |
|
extern float *matchlamp(); |
18 |
|
|
19 |
|
/* lamp parameters */ |
27 |
|
|
28 |
|
float *lampcolor; /* the lamp color (RGB) */ |
29 |
|
double unit2meter; /* conversion from units to meters */ |
30 |
< |
double projarea; /* projected area for this geometry */ |
30 |
> |
double area; /* radiating area for this geometry */ |
31 |
|
double lumens; /* total lamp lumens */ |
32 |
|
|
33 |
|
struct { |
36 |
|
int (*check)(); |
37 |
|
char *help; |
38 |
|
} param[NPARAMS] = { |
39 |
< |
{ "lamp type", "white", typecheck, |
39 |
> |
{ "lamp type", "WHITE", typecheck, |
40 |
|
"The lamp type is a string which corresponds to one of the types registered\n\ |
41 |
< |
in the lamp table file. A value of \"white\" means an uncolored source,\n\ |
41 |
> |
in the lamp table file. A value of \"WHITE\" means an uncolored source,\n\ |
42 |
|
which may be preferable because it results in a color balanced image." }, |
43 |
|
{ "length unit", "meter", unitcheck, |
44 |
|
"Unit must be one of: \"meter\", \"centimeter\", \"foot\", or \"inch\".\n\ |
173 |
|
{ |
174 |
|
double whiteval; |
175 |
|
|
176 |
< |
whiteval = lumens/470./projarea; |
176 |
> |
whiteval = lumens/area/(WHTEFFICACY*PI); |
177 |
|
|
178 |
|
printf("Lamp color (RGB) = %f %f %f\n", |
179 |
|
lampcolor[0]*whiteval, |
182 |
|
} |
183 |
|
|
184 |
|
|
185 |
< |
getd(dp) /* get a positive double from stdin */ |
185 |
> |
getd(name, dp, help) /* get a positive double from stdin */ |
186 |
> |
char *name; |
187 |
|
double *dp; |
188 |
+ |
char *help; |
189 |
|
{ |
190 |
|
char buf[32]; |
191 |
< |
|
191 |
> |
again: |
192 |
> |
printf("%s [%g]: ", name, *dp); |
193 |
|
if (gets(buf) == NULL) |
194 |
|
return(0); |
195 |
+ |
if (buf[0] == '?') { |
196 |
+ |
puts(help); |
197 |
+ |
goto again; |
198 |
+ |
} |
199 |
|
if ((buf[0] < '0' || buf[0] > '9') && buf[0] != '.') |
200 |
|
return(0); |
201 |
|
*dp = atof(buf); |
205 |
|
|
206 |
|
getpolygon() /* get projected area for a polygon */ |
207 |
|
{ |
208 |
< |
static double area = 1.0; |
208 |
> |
static double parea = 1.0; |
209 |
|
|
210 |
< |
printf("Polygon area [%g]: ", area); |
211 |
< |
getd(&area); |
212 |
< |
projarea = PI*unit2meter*unit2meter * area; |
210 |
> |
getd("Polygon area", &parea, |
211 |
> |
"Enter the total radiating area of the polygon."); |
212 |
> |
area = unit2meter*unit2meter * parea; |
213 |
|
return(1); |
214 |
|
} |
215 |
|
|
218 |
|
{ |
219 |
|
static double radius = 1.0; |
220 |
|
|
221 |
< |
printf("Sphere radius [%g]: ", radius); |
222 |
< |
getd(&radius); |
223 |
< |
projarea = 4.*PI*PI*unit2meter*unit2meter * radius*radius; |
221 |
> |
getd("Sphere radius", &radius, |
222 |
> |
"Enter the distance from the sphere's center to its surface."); |
223 |
> |
area = 4.*PI*unit2meter*unit2meter * radius*radius; |
224 |
|
return(1); |
225 |
|
} |
226 |
|
|
229 |
|
{ |
230 |
|
static double length = 1.0, radius = 0.1; |
231 |
|
|
232 |
< |
printf("Cylinder length [%g]: ", length); |
233 |
< |
getd(&length); |
234 |
< |
printf("Cylinder radius [%g]: ", radius); |
235 |
< |
getd(&radius); |
236 |
< |
projarea = PI*PI*2.*PI*unit2meter*unit2meter * radius*length; |
232 |
> |
getd("Cylinder length", &length, |
233 |
> |
"Enter the length of the cylinder."); |
234 |
> |
getd("Cylinder radius", &radius, |
235 |
> |
"Enter the distance from the cylinder's axis to its surface."); |
236 |
> |
area = 2.*PI*unit2meter*unit2meter * radius*length; |
237 |
|
return(1); |
238 |
|
} |
239 |
|
|
242 |
|
{ |
243 |
|
static double radius = 1.0; |
244 |
|
|
245 |
< |
printf("Disk radius [%g]: ", radius); |
246 |
< |
getd(&radius); |
247 |
< |
projarea = PI*PI*unit2meter*unit2meter * radius*radius; |
245 |
> |
getd("Disk radius", &radius, |
246 |
> |
"Enter the distance from the ring's center to its outer edge.\n\ |
247 |
> |
The inner radius must be zero."); |
248 |
> |
area = PI*unit2meter*unit2meter * radius*radius; |
249 |
|
return(1); |
250 |
|
} |