home *** CD-ROM | disk | FTP | other *** search
/ Chip 2000 August / chip_08_2000.iso / aktualnosci / shareware / Rhinoceros / rh11eval_20000320.exe / %MAINDIR% / RIB / rh_background.sl < prev    next >
Encoding:
Text File  |  2000-06-08  |  328 b   |  11 lines

  1. // rh_background.sl -- a custom background shader for exporting Rhino
  2. // scenes to RIB. This shader does not clear the alpha channel, in case
  3. // the background happens to be black.
  4. // It is based on background.sl by Larry Gritz.
  5.  
  6. imager rh_background (color bgcolor = 1)
  7. {
  8.     Ci += (1-alpha) * bgcolor;
  9.     Oi = 1;
  10. }
  11.