116 |
|
|
117 |
|
setcolor(ndp->cthru, 0, 0, 0); /* starting assumption */ |
118 |
|
|
119 |
– |
if (ndp->pr->crtype & (SPECULAR|AMBIENT) && !(ndp->pr->crtype & SHADOW)) |
120 |
– |
return; /* no need for through comp. */ |
121 |
– |
|
119 |
|
if (ndp->pr->rod > 0) |
120 |
|
dfp = (ndp->sd->tf != NULL) ? ndp->sd->tf : ndp->sd->tb; |
121 |
|
else |
237 |
|
if ((vsrc[2] > 0) ^ (ndp->vray[2] > 0) && bright(ndp->cthru) > FTINY) { |
238 |
|
double dx = vsrc[0] + ndp->vray[0]; |
239 |
|
double dy = vsrc[1] + ndp->vray[1]; |
240 |
< |
if (dx*dx + dy*dy <= (4./PI)*(omega + tomega + |
240 |
> |
if (dx*dx + dy*dy <= (1.5*4./PI)*(omega + tomega + |
241 |
|
2.*sqrt(omega*tomega))) |
242 |
|
return(0); |
243 |
|
} |
441 |
|
static int |
442 |
|
sample_sdcomp(BSDFDAT *ndp, SDComponent *dcp, int xmit) |
443 |
|
{ |
444 |
< |
const int hasthru = (xmit && bright(ndp->cthru) > FTINY); |
444 |
> |
const int hasthru = (xmit && |
445 |
> |
!(ndp->pr->crtype & (SPECULAR|AMBIENT)) |
446 |
> |
&& bright(ndp->cthru) > FTINY); |
447 |
|
int nstarget = 1; |
448 |
|
int nsent = 0; |
449 |
|
int n; |
490 |
|
if (xmit) /* apply pattern on transmit */ |
491 |
|
multcolor(sr.rcoef, ndp->pr->pcol); |
492 |
|
if (rayorigin(&sr, SPECULAR, ndp->pr, sr.rcoef) < 0) { |
493 |
< |
if (maxdepth > 0) |
494 |
< |
break; |
495 |
< |
continue; /* Russian roulette victim */ |
493 |
> |
if (!n & (nstarget > 1)) { |
494 |
> |
n = nstarget; /* avoid infinitue loop */ |
495 |
> |
nstarget = nstarget*sr.rweight/minweight; |
496 |
> |
if (n == nstarget) break; |
497 |
> |
n = -1; /* moved target */ |
498 |
> |
} |
499 |
> |
continue; /* try again */ |
500 |
|
} |
501 |
|
if (xmit && ndp->thick != 0) /* need to offset origin? */ |
502 |
|
VSUM(sr.rorg, sr.rorg, ndp->pr->ron, -ndp->thick); |
513 |
|
sample_sdf(BSDFDAT *ndp, int sflags) |
514 |
|
{ |
515 |
|
int hasthru = (sflags == SDsampSpT && |
516 |
< |
bright(ndp->cthru) > FTINY); |
516 |
> |
!(ndp->pr->crtype & (SPECULAR|AMBIENT)) |
517 |
> |
&& bright(ndp->cthru) > FTINY); |
518 |
|
int n, ntotal = 0; |
519 |
|
double b = 0; |
520 |
|
SDSpectralDF *dfp; |