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

  1. // Persistence Of Vision raytracer version 1.0 sample file.
  2.  
  3. // By Alexander Enzmann
  4.  
  5. /* sample quartic scene file written by Alexander Enzmann */
  6.  
  7. #include "shapes.inc"
  8. #include "colors.inc"
  9. #include "textures.inc"
  10.  
  11. /* Lemniscate of Gerono */
  12. object {
  13.    quartic {
  14.       < 1.0   0.0   0.0    0.0  0.0   0.0   0.0   0.0   0.0 -1.0
  15.       0.0   0.0   0.0    0.0  0.0   0.0   0.0   0.0   0.0  0.0
  16.       0.0   0.0   0.0    0.0  0.0   1.0   0.0   0.0   0.0  0.0
  17.       0.0   0.0   1.0    0.0  0.0 >
  18.    }
  19.    bounded_by {
  20.       sphere { <0 0 0> 2 }
  21.    }
  22.    texture {
  23.       color Red
  24.       phong 1.0
  25.       phong_size 10
  26.       ambient 0.2
  27.       diffuse 0.8
  28.    }
  29.    rotate <0 -45 0>
  30.    translate <0 0 2>
  31. }
  32.  
  33. /* Put down checkered floor */
  34. object {
  35.    plane { <0.0 1.0 0.0> -20.0 }
  36.    texture {
  37.       checker colour NavyBlue colour MidnightBlue
  38.       scale < 20.0 20.0 20.0 >
  39.       ambient 0.8
  40.       diffuse 0.2
  41.    }
  42. }
  43.  
  44. camera {
  45.    location  <0.0  1.0 -2.0>
  46.    up          <0.0  1.0  0.0>
  47.    right     <1.33 0.0  0.0>
  48.    look_at   <0.0  0.0  5.0>
  49. }
  50.  
  51. object {
  52.    light_source { <200 30 -300>
  53.       color White
  54.    }
  55. }
  56.  
  57. object {
  58.    light_source { <-200 30 -300>
  59.       color White
  60.    }
  61. }
  62.