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

  1. /* Copyrighted Pixar 1989 */
  2. /* From the RenderMan Companion p.344 */
  3. /* Listing 16.11  Shader mapping texture-space coordinates to colors */
  4.  
  5. /*
  6.  * show_st(): color surface point according to its s,t coordinates.
  7.  */
  8. surface
  9. show_st()
  10. {
  11.      Ci = color "rgb" (s, t, 0);
  12.     Oi = 1;
  13. }