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

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