home *** CD-ROM | disk | FTP | other *** search
/ Crawly Crypt Collection 2 / crawlyvol2.bin / graphics / ftpovscn / 1 / blob.pov < prev    next >
Text File  |  1992-07-21  |  751b  |  42 lines

  1. // Persistence Of Vision raytracer version 1.0 sample file.
  2. // written by Alexander Enzmann
  3. // Demonstrates blob primitive
  4.  
  5. camera {
  6.    location  <0 0 -5>
  7.    direction <0 0 1.2071>
  8.    up        <0 1 0>
  9.    right     <1 0 0>
  10.    look_at   <0 0 0>
  11. }
  12.  
  13. object {
  14.    light_source {
  15.       <-15 30 -25>
  16.       color red 1 green 1 blue 1
  17.    }
  18. }
  19. object {
  20.    light_source {
  21.       < 15 30 -25>
  22.       color red 1 green 1 blue 1
  23.    }
  24. }
  25.  
  26.  
  27. object {
  28.    blob {
  29.       threshold 0.6
  30.       component 1.0 1.0 <0.75 0 0>
  31.       component 1.0 1.0 <-0.375  0.64952 0>
  32.       component 1.0 1.0 <-0.375 -0.64952 0>
  33.    }
  34.    texture {
  35.       ambient 0.2
  36.       diffuse 0.8
  37.       color red 1 green 0 blue 0
  38.       phong 1
  39.    }
  40.    rotate <0 30 0>
  41. }
  42.