home *** CD-ROM | disk | FTP | other *** search
/ Amiga MA Magazine 1998 #7 / amigamamagazinepolishissue1998.iso / varia / povray3 / povray3_fpu / pov3demo / objects / tblob.pov < prev    next >
Text File  |  1997-12-12  |  741b  |  37 lines

  1. // Persistence Of Vision raytracer version 3.0 sample file.
  2. // POV-Ray 2.0 sample data file written by Alexander Enzmann
  3.  
  4. #version 3.0
  5. global_settings { assumed_gamma 2.2 }
  6.  
  7. #include "colors.inc"
  8. #include "textures.inc"
  9. #include "glass.inc"
  10.  
  11. camera {
  12.   location  <0, 3, -6>
  13.   right <4/3, 0, 0>
  14.   direction <0, 0, 1.9>
  15.   look_at   <0, 0, 0>
  16. }
  17.  
  18. light_source { <-15, 30, -25> color red 1 green 1 blue 1 }
  19.  
  20. blob {
  21.   threshold 0.6
  22.   component 1.0, 1.0, <0.75, 0, 0>
  23.   component 1.0, 1.0, <-0.375, 0.64952, 0>
  24.   component 1.0, 1.0, <-0.375, -0.64952, 0>
  25.  
  26.   texture { T_Glass1 }
  27.  
  28.   rotate 30*y
  29. }
  30.  
  31. disc {
  32.   <0, 0.001, 0>, <0, 1, 0>, 1000
  33.   pigment { checker colour White colour Black }
  34.   finish { ambient 0.4 diffuse 0.6 }
  35.   translate <0,-2.5,0>
  36. }
  37.