home *** CD-ROM | disk | FTP | other *** search
/ Hackers Magazine 57 / CdHackersMagazineNr57.iso / Software / Multimedia / k3d-setup-0.7.11.0.exe / share / k3d / shaders / surface / k3d_show_st.sl < prev    next >
Encoding:
Text File  |  2008-01-23  |  276 b   |  15 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. k3d_show_st()
  10. {
  11.     Ci = color(s, t, 0);
  12.     Oi = 1;
  13. }
  14.  
  15.