42 |
|
extern RNUMBER lastray; /* last ray number sent */ |
43 |
|
extern RNUMBER lastdone; /* last ray processed */ |
44 |
|
|
45 |
+ |
extern int report_intvl; /* reporting interval (seconds) */ |
46 |
+ |
|
47 |
|
typedef double DCOLOR[3]; /* double-precision color */ |
48 |
|
|
49 |
|
/* |
61 |
|
const char *modname; /* modifier name */ |
62 |
|
const char *params; /* parameter list */ |
63 |
|
EPNODE *binv; /* bin value expression */ |
64 |
+ |
int bin0; /* starting bin offset */ |
65 |
|
int nbins; /* number of contribution bins */ |
66 |
|
DCOLOR cbin[1]; /* contribution bins (extends struct) */ |
67 |
|
} MODCONT; /* modifier contribution */ |
122 |
|
extern void end_children(int immed); |
123 |
|
|
124 |
|
extern void put_zero_record(int ndx); |
125 |
+ |
|
126 |
+ |
extern int morays(void); /* reached end of input? */ |
127 |
|
|
128 |
|
extern void parental_loop(void); /* controlling process */ |
129 |
|
|