ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/radiance/ray/src/cv/bsdf2rad.cal
Revision: 2.2
Committed: Mon Apr 10 06:09:14 2017 UTC (7 years, 1 month ago) by greg
Branch: MAIN
Changes since 2.1: +10 -6 lines
Log Message:
Swapped Front & Back hemisphere placement and additional tweaks

File Contents

# Content
1 { RCSid $Id: bsdf2rad.cal,v 2.1 2017/04/09 21:39:26 greg Exp $ }
2 {
3 Calculation of false color scale for bsdf2rad.
4
5 Greg Ward April 2017
6 }
7 { Compute lines of latitude and longitude }
8 LATSTEP : 15*DEGREE;
9 LONGSTEP : 30*DEGREE; { must divide evenly into 90 degrees }
10 LATWIDTH : 0.7*DEGREE;
11 LONGWIDTH : 1.*DEGREE;
12
13 mylong = atan2(Ny,Nx);
14
15 latlong = if(LATWIDTH-mod(Acos(Nz)+ LATWIDTH/2,LATSTEP), .05,
16 if(LONGWIDTH-mod(mylong+LONGWIDTH/2,90*DEGREE), .01,
17 if(LONGWIDTH-mod(mylong+LONGWIDTH/2,LONGSTEP), .2, 1)));
18
19 interp_arr2`(i,x,f):(i+1-x)*f(i)+(x-i)*f(i+1);
20 interp_arr`(x,f):if(x-1,if(f(0)-x,interp_arr2(floor(x),x,f),f(f(0))),f(1));
21
22 def_redp(i):select(i,0.18848,0.05468174,
23 0.00103547,8.311144e-08,7.449763e-06,0.0004390987,0.001367254,
24 0.003076,0.01376382,0.06170773,0.1739422,0.2881156,0.3299725,
25 0.3552663,0.372552,0.3921184,0.4363976,0.6102754,0.7757267,
26 0.9087369,1,1,0.9863);
27 sca_red(x):interp_arr(x/0.0454545+1,def_redp);
28
29 def_grnp(i):select(i,0.0009766,2.35501e-05,
30 0.0008966244,0.0264977,0.1256843,0.2865799,0.4247083,0.4739468,
31 0.4402732,0.3671876,0.2629843,0.1725325,0.1206819,0.07316644,
32 0.03761026,0.01612362,0.004773749,6.830967e-06,0.00803605,
33 0.1008085,0.3106831,0.6447838,0.9707);
34 sca_grn(x):interp_arr(x/0.0454545+1,def_grnp);
35
36 def_blup(i):select(i,0.2666,0.3638662,0.4770437,
37 0.5131397,0.5363797,0.5193677,0.4085123,0.1702815,0.05314236,
38 0.05194055,0.08564082,0.09881395,0.08324373,0.06072902,
39 0.0391076,0.02315354,0.01284458,0.005184709,0.001691774,
40 2.432735e-05,1.212949e-05,0.006659406,0.02539);
41 sca_blu(x):interp_arr(x/0.0454545+1,def_blup);
42
43 { BSDF scale is based on distance from the origin }
44
45 dist_orig = sqrt(Px*Px + Py*Py + Pz*Pz);
46 bsdf_red = sca_red(dist_orig);
47 bsdf_grn = sca_grn(dist_orig);
48 bsdf_blu = sca_blu(dist_orig);