home *** CD-ROM | disk | FTP | other *** search
/ TopWare 18: Liquid / Image.iso / liquid / top1089 / povray.pov < prev    next >
Text File  |  1993-12-11  |  633b  |  37 lines

  1. #include "colors.inc"
  2. #include "textures.inc"
  3. #include "shapes.inc"
  4.  
  5. // Viewer
  6. camera {
  7.    location <0, 0, -48>
  8.    look_at <0, 12, 0>
  9. }
  10.  
  11. fog {colour red 0 green 0 blue 0 distance 52}
  12.  
  13. // Sphere object 
  14. object {
  15.        sphere { <12, 4, 0> 8 }
  16.     rotate <0, 150, 0>
  17.     finish { ambient 1}
  18.     pigment { White    }
  19.     }
  20.  
  21. // Cube object
  22. object { box { <8, 0, 0> <20, 12, 12> }
  23.          rotate <45, 45, 45>
  24.      finish { ambient 1}
  25.      pigment { White }
  26.      translate <0, -8, 0>       
  27.        }
  28.  
  29. // Cube object
  30. object { cone { <0, 14, 0>, 8 
  31.           <0, 36, 0>, 0 }
  32.           pigment { White }
  33.           finish { ambient 1}
  34.         }
  35.  
  36.  
  37.