home *** CD-ROM | disk | FTP | other *** search
/ DP Tool Club 8 / CDASC08.ISO / NEWS / RADIANCE / SCN / SODA / COLORSTR.CAL < prev    next >
Text File  |  1993-10-07  |  316b  |  14 lines

  1. {
  2.     colorstripe.cal - calculation for stripes of color.
  3.  
  4.     A1, A2, A3 - stripe direction vector over width
  5.     A4, A5, A6 - first color
  6.     A7, A8, A9 - second color
  7. }
  8.  
  9. stripe_red = if( stripe1, A4, A7 );
  10. stripe_grn = if( stripe1, A5, A8 );
  11. stripe_blu = if( stripe1, A6, A9 );
  12.  
  13. stripe1 = frac( A1*Px + A2*Py + A3*Pz ) - .5;
  14.