home *** CD-ROM | disk | FTP | other *** search
/ TopWare 18: Liquid / Image.iso / liquid / top1151 / f2pscn3.pov < prev    next >
Text File  |  1994-01-03  |  1KB  |  40 lines

  1. //
  2. //       filename: F2PSCN3.POV
  3. //
  4. //       Pinwheel composed of monolith's ( 2001 a space odyessy 1:4:9 )
  5. //        
  6. //       by David Grossman  ( Monolith from Arthur C Clark )
  7. //
  8.  
  9. #include "frct2pov.inc"
  10.  
  11. camera   {  location < 0, 6, 8 >
  12.             direction < 0, 0, 7 >
  13.             up < 0, 1, 0 >        // y is up
  14.             right < -4/3, 0, 0 >  // right handed system
  15.             look_at < 0, -.05, 0 >
  16.          }
  17.          
  18. #declare monolith = box { < -.05,-.2,-.45 > , < .05,.2,.45 > rotate 45*z 
  19.                           translate .45*z }
  20.  
  21. #declare pinwheel = union { object { monolith }
  22.                             object { monolith rotate 60*y }
  23.                             object { monolith rotate 120*y }
  24.                             object { monolith rotate 180*y }
  25.                             object { monolith rotate 240*y }
  26.                             object { monolith rotate 300*y }
  27.                            }
  28.  
  29. object   {  pinwheel  rotate 15*y
  30.             texture  {  frct2pov
  31.                         finish   {  ambient .5 diffuse .5 } rotate -90*x }  }
  32.  
  33.  
  34. object   {  light_source   {  < 20, 15, 20 > color rgb < 1, 1, 1 > } }
  35.                                     
  36.                                 
  37.                                     
  38.                                     
  39.                                     
  40.