ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/radiance/ray/src/rt/rayinit.cal
(Generate patch)

Comparing ray/src/rt/rayinit.cal (file contents):
Revision 2.12 by gwlarson, Mon Oct 19 15:45:30 1998 UTC vs.
Revision 2.14 by greg, Tue Mar 11 19:29:05 2003 UTC

# Line 1 | Line 1
1 < { SCCSid "$SunId$ LBL" }
2 <
1 > { RCSid $Id$ }
2   {
3          Initialization file for Radiance.
4  
# Line 18 | Line 17
17          Kx, Ky, Kz                      - world k unit vector
18          arg(n)                          - real arguments, arg(0) is count
19  
20 +        For mesh objects, the following are available:
21 +
22 +        Lu, Lv                          - local (u,v) coordinates
23 +
24          For brdf functions, the following are also available:
25  
26          NxP, NyP, NzP                   - perturbed surface normal
# Line 88 | Line 91 | FTINY : 1e-7;
91   and(a,b) : if( a, b, a );
92   or(a,b) : if( a, a, b );
93   not(a) : if( a, -1, 1 );
94 + xor(a,b) : if( a, not(b), b );
95   abs(x) : if( x, x, -x );
96   sgn(x) : if( x, 1, if(-x, -1, 0) );
97   sq(x) : x*x;

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines