home *** CD-ROM | disk | FTP | other *** search
/ TopWare 18: Liquid / Image.iso / liquid / top1089 / gradient.pov < prev    next >
Encoding:
Text File  |  1993-11-22  |  533 b   |  32 lines

  1. #include "colors.inc"
  2. #include "textures.inc"
  3. #include "shapes.inc"
  4.  
  5. // Viewer
  6. camera {
  7.    location <0, 0, -36>
  8.    look_at <0, 6, 0>
  9. }
  10.  
  11.  
  12.  
  13. // Sphere object 
  14. object {
  15.        sphere { <8, 4, 0> 8 }
  16.     rotate <0, 180, 0>
  17.     finish { ambient 1}
  18.     pigment { gradient z
  19.           scale <0, 0, 18>
  20.           translate <0, 0, 9> }       
  21.     }
  22.  
  23. // Cube object
  24. object { box { <0, 0, 0> <12, 12, 12> }
  25.          rotate <45, 45,45>
  26.      finish { ambient 1}
  27.      pigment { gradient z
  28.            scale <0 0 18>
  29.            translate <0, 0, 9>
  30.          }       
  31.        }
  32.