home *** CD-ROM | disk | FTP | other *** search
/ TopWare 18: Liquid / Image.iso / liquid / top1151 / f2pscn1.pov < prev    next >
Text File  |  1994-01-03  |  978b  |  33 lines

  1. //
  2. //       filename: F2PSCN1.POV
  3. //
  4. //       Ellipsoid and plane.
  5. //        
  6. //       by David Grossman 
  7. //
  8.  
  9. #include "frct2pov.inc"
  10.  
  11. camera   {  location < 0, 6, 7 >
  12.             direction < 0, 0, 4.5 >
  13.             up < 0, 1, 0 >        // y is up
  14.             right < -4/3, 0, 0 >  // right handed system
  15.             look_at < 0, .5, 0 >
  16.          }
  17.          
  18.          
  19. object   {  sphere   {  < 0, 1, 0 >, 1 scale < 1,.5,.75 > }
  20.             texture  {  frct2pov
  21.                         finish   {  ambient .4 diffuse .6 } rotate -90*x }  }
  22.  
  23. object   {  plane {  y,0 }
  24.             texture  {  frct2pov
  25.                         finish   {  ambient .4 diffuse .6 } rotate -90*x scale 2 }   }
  26.  
  27. object   {  light_source   {  < 10, 30, 20 > color rgb < 1, 1, 1 > } }
  28.                                     
  29.                                     
  30.                                     
  31.                                     
  32.                                     
  33.