home *** CD-ROM | disk | FTP | other *** search
/ Amiga MA Magazine 1998 #7 / amigamamagazinepolishissue1998.iso / varia / povray3 / povray3_040 / pov3demo / anim / l_o / l_o.pov < prev   
Text File  |  1997-12-12  |  1KB  |  71 lines

  1. // Persistence Of Vision raytracer version 3.0 sample file.
  2. // File by Dan Farmer
  3. // Lambda/omega demonstration
  4.  
  5. #version 3.0
  6. global_settings { assumed_gamma 2.2 }
  7.  
  8. #include "colors.inc"
  9.  
  10. camera {
  11.     location <0, 0, -10>
  12.     right x*1.3333
  13.     angle 57
  14.     look_at 0
  15. }
  16.  
  17. light_source { <-20, 30, -25> rgb 1 }
  18.  
  19. #declare L = clock * 3
  20.  
  21. #declare Font="cyrvetic.ttf"
  22.  
  23. union {
  24.     text{ ttf Font
  25.         concat("lambda=",str(L,1,2)),0.1,0
  26.         scale <1.25, 1.25, 2>
  27.         translate <-3, 1, -1>
  28.         pigment { Cyan }
  29.     }
  30.     box { <-4,-0.5, -1> <4, 0.5, 1>
  31.         pigment {
  32.             gradient y
  33.             turbulence 1
  34.             lambda L
  35.             color_map {
  36.                 [0.2 SteelBlue ]
  37.                 [0.5 White ]
  38.                 [0.9 Red ]
  39.             }
  40.             scale 0.5
  41.         }
  42.     }
  43.     translate y*1.35
  44. }
  45.  
  46. #declare O = clock
  47. union {
  48.     text{ ttf Font
  49.         concat("omega=",str(O,1,2)),0.1,0
  50.         scale <1.25, 1.25, 2>
  51.         translate <-3, 1, -1>
  52.         pigment { Cyan }
  53.     }
  54.     box { <-4,-0.5, -1> <4, 0.5, 1>
  55.         pigment {
  56.             gradient y
  57.             turbulence 1
  58.             omega O
  59.             color_map {
  60.                 [0.2 SteelBlue ]
  61.                 [0.5 White ]
  62.                 [0.9 Red ]
  63.             }
  64.             scale 0.5
  65.         }
  66.     }
  67.     translate -y*1.35
  68. }
  69.  
  70. plane { z, 10  pigment { Plum }}
  71.