ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/radiance/ray/lib/slate.cal
Revision: 1.2
Committed: Tue Mar 18 17:30:17 2003 UTC (21 years, 2 months ago) by greg
Branch: MAIN
CVS Tags: HEAD
Changes since 1.1: +0 -0 lines
State: FILE REMOVED
Log Message:
Decided to move ray/lib directory into non-CVS distribution

File Contents

# Content
1 {
2 Slate texture
3 Aligned in direction of x-axis
4
5 2/8/91
6 }
7
8 slate_dx = .5*Rdot * (.1*fnoise3(-Px/10,Py,Pz)
9 + if(noise3(Px/10,Py,Pz)+.8,0,noise3a(Px/10,Py,Pz)));
10
11 slate_dy = .5*Rdot * (.1*fnoise3(Px/10,-Py,Pz)
12 + if(noise3(Px/10,Py,Pz)+.8,0,noise3b(Px/10,Py,Pz)));
13
14 slate_dz = .5*Rdot * (.1*fnoise3(Px/10,Py,-Pz)
15 + if(noise3(Px/10,Py,Pz)+.8,0,noise3c(Px/10,Py,Pz)));