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

  1. // Persistence Of Vision raytracer version 3.0 sample file.
  2.  
  3.  
  4. #version 3.0
  5. global_settings { assumed_gamma 2.2 }
  6.  
  7. #include "colors.inc"
  8.  
  9. camera {
  10.    location  <0, 0,-20>
  11.    direction <0, 0,  1>
  12.    up        <0,  1,  0>
  13.    right     <4/3, 0,  0>
  14.    look_at   <0, 0, 0>
  15.    }
  16.  
  17. background { color rgb <0.5, 0.5, 0.5> }
  18.  
  19. text { ttf
  20.    "crystal.ttf",
  21.    "POV-Ray", 1, 0
  22.    pigment { color rgb <1, 0.2, 0.2> }
  23.    finish {
  24.       ambient 0.2
  25.       diffuse 0.6
  26.       phong 0.3
  27.       phong_size 100
  28.       }
  29.    scale <4, 4, 1>
  30.    translate <-10,6,0>
  31.    }
  32.  
  33. text { ttf 
  34.    "crystal.ttf",
  35.    "Version:3.0", 1, 0
  36.    pigment { color rgb <1, 0.2, 0.2> }
  37.    finish {
  38.       ambient 0.2
  39.       diffuse 0.6
  40.       phong 0.3
  41.       phong_size 100
  42.       }
  43.    scale <4, 4, 1>
  44.    translate <-10,2,0>
  45.    }
  46.  
  47. text { ttf
  48.    "cyrvetic.ttf",
  49.    "POV-Ray", 1, 0
  50.    pigment { color rgb <1, 0.2, 0.2> }
  51.    finish {
  52.       ambient 0.2
  53.       diffuse 0.6
  54.       phong 0.3
  55.       phong_size 100
  56.       }
  57.    scale <4, 4, 1>
  58.    translate <-10,-2,0>
  59.    }
  60.  
  61. text { ttf
  62.    "cyrvetic.ttf",
  63.    "Version:3.0", 1, 0
  64.    pigment { color rgb <1, 0.2, 0.2> }
  65.    finish {
  66.       ambient 0.2
  67.       diffuse 0.6
  68.       phong 0.3
  69.       phong_size 100
  70.       }
  71.    scale <4, 4, 1>
  72.    translate <-10,-6,0>
  73.    }
  74.  
  75. light_source {<20, 30, -100> colour White}
  76.