1 |
greg |
1.1 |
#ifndef lint |
2 |
greg |
2.10 |
static const char RCSid[] = "$Id: mx_func.c,v 2.9 2014/07/08 18:25:00 greg Exp $"; |
3 |
greg |
1.1 |
#endif |
4 |
|
|
/* |
5 |
|
|
* mx_func.c - routine for mixture functions. |
6 |
greg |
2.5 |
*/ |
7 |
|
|
|
8 |
greg |
2.6 |
#include "copyright.h" |
9 |
greg |
1.1 |
|
10 |
|
|
#include "ray.h" |
11 |
greg |
2.2 |
#include "func.h" |
12 |
schorsch |
2.8 |
#include "rtotypes.h" |
13 |
greg |
2.2 |
|
14 |
greg |
1.1 |
/* |
15 |
|
|
* A mixture function is specified: |
16 |
|
|
* |
17 |
|
|
* modifier mixfunc name |
18 |
|
|
* 4+ foremod backmod varname vfname xf |
19 |
|
|
* 0 |
20 |
|
|
* n A1 A2 .. |
21 |
|
|
* |
22 |
|
|
* Vfname is the name of the file where the variable definition |
23 |
|
|
* can be found. The list of real arguments can be accessed by |
24 |
|
|
* definitions in the file. The xf is a transformation |
25 |
|
|
* to get from the original coordinates to the current coordinates. |
26 |
|
|
*/ |
27 |
|
|
|
28 |
|
|
|
29 |
greg |
2.9 |
int |
30 |
schorsch |
2.8 |
mx_func( /* compute mixture function */ |
31 |
greg |
2.9 |
OBJREC *m, |
32 |
schorsch |
2.8 |
RAY *r |
33 |
|
|
) |
34 |
greg |
1.1 |
{ |
35 |
gwlarson |
2.4 |
OBJECT obj; |
36 |
greg |
2.9 |
int i; |
37 |
greg |
1.1 |
double coef; |
38 |
|
|
OBJECT mod[2]; |
39 |
greg |
2.9 |
MFUNC *mf; |
40 |
greg |
1.1 |
|
41 |
|
|
if (m->oargs.nsargs < 4) |
42 |
|
|
objerror(m, USER, "bad # arguments"); |
43 |
gwlarson |
2.4 |
obj = objndx(m); |
44 |
greg |
1.1 |
for (i = 0; i < 2; i++) |
45 |
greg |
2.2 |
if (!strcmp(m->oargs.sarg[i], VOIDID)) |
46 |
greg |
1.1 |
mod[i] = OVOID; |
47 |
gwlarson |
2.4 |
else if ((mod[i] = lastmod(obj, m->oargs.sarg[i])) == OVOID) { |
48 |
greg |
2.2 |
sprintf(errmsg, "undefined modifier \"%s\"", |
49 |
|
|
m->oargs.sarg[i]); |
50 |
greg |
1.1 |
objerror(m, USER, errmsg); |
51 |
|
|
} |
52 |
greg |
2.2 |
mf = getfunc(m, 3, 0x4, 0); |
53 |
|
|
setfunc(m, r); |
54 |
greg |
1.1 |
errno = 0; |
55 |
greg |
2.2 |
coef = evalue(mf->ep[0]); |
56 |
greg |
2.10 |
if ((errno == EDOM) | (errno == ERANGE)) { |
57 |
greg |
1.1 |
objerror(m, WARNING, "compute error"); |
58 |
greg |
2.3 |
return(0); |
59 |
greg |
1.1 |
} |
60 |
greg |
2.3 |
if (raymixture(r, mod[0], mod[1], coef)) { |
61 |
|
|
if (m->omod != OVOID) |
62 |
|
|
objerror(m, USER, "inappropriate modifier"); |
63 |
|
|
return(1); |
64 |
|
|
} |
65 |
|
|
return(0); |
66 |
greg |
1.1 |
} |