home *** CD-ROM | disk | FTP | other *** search
/ Mega A/V / mega_av.zip / mega_av / GRAPHUTL / POVSCN.ZIP / LEVEL3.ZIP / FISH13.ZIP / FISH13.POV < prev    next >
Text File  |  1992-07-03  |  1KB  |  64 lines

  1. // Persistence Of Vision Raytracer version 1.0 sample file.
  2.  
  3.  
  4. //----------- fish out of water ----------- 3/10/92 miller
  5.  
  6. #include "colors.inc"
  7. #include "shapes.inc"
  8. #include "textures.inc"
  9. #include "fish.inc"
  10. #include "world12.inc"
  11. #include "stem1.inc"
  12.  
  13. camera {
  14.    location <-5 0 -105> direction <0 0 1.5>
  15.    up <0 1 0> right <1.333 0 0>
  16.    look_at <-5 -5 0>
  17. }
  18.  
  19. //-------light
  20. object { light_source { <200 100 -100> color White } }
  21.  
  22.  
  23.  
  24. //-------light
  25. object { light_source {  <1000 500 400> color White } }
  26.  
  27.  
  28. composite { fish rotate <0 -30 0>  }
  29. object { world12  }
  30.  
  31. composite { stem1 scale <3 3 3> rotate <0 0 0> translate <80 -25 150>  }
  32. composite { stem1 scale <1.5 1.5 1.5> rotate <0 80 0> translate <70 -25 90>  }
  33.  
  34.  
  35.  
  36.  
  37. /*
  38. FOG
  39. 20000
  40. COLOR DimGray
  41. END_FOG
  42. */
  43.  
  44.  
  45. /*-------------- SWAMP WATER ----------------------------*/
  46. object { 
  47.    intersection { Cube scale <10000 1 500> translate <0 -25 0>  }
  48.    texture {
  49.       color red 0.0 green 0.07 blue 0.0
  50.       reflection 0.45
  51.       ambient 0.15
  52.       //color MidnightBlue
  53.       ripples 0.7 frequency 0.08
  54.       translate <0 0 0>
  55.       diffuse 0.6 phong 1.0 phong_size 80
  56.    }
  57. }
  58.  
  59.  
  60.  
  61.  
  62.  
  63.  
  64.