home *** CD-ROM | disk | FTP | other *** search
- // Persistence Of Vision raytracer version 2.0 sample file.
-
- // By Drew Wells
-
- // Spline.pov - This file requires spline.inc
-
- // Drew Wells 1990 cis 73767,1244
-
- // This is a huge word "Merry" written in cursive over a reflective
- // checkered plain. Normally i avoid using the cliched checkered plane {,
- // but here it looks good with the huge, holiday "Merry".
-
-
- #include "shapes.inc"
- #include "colors.inc"
- #include "textures.inc"
-
- #include "spline.inc"
-
- camera {
- location <10.0, 25.0, -550.0>
- direction <0.0, 0.0, 3.0>
- up <0.0, 1.0, 0.0>
- right <4/3, 0.0, 0.0>
- look_at <120.0, 45.0, 0.0>
- }
-
- /* Put down the beloved famous raytrace green/yellow checkered floor */
- plane { y, 17.0
- pigment {
- checker colour red 1.0 blue 1.0 green 1.0
- colour red 0.1 green 0.6 blue 0.1
- quick_color red 1.0 green 1.0 blue 1.0
- scale 20.0
- }
- finish {
- reflection 0.5
- ambient 0.1
- diffuse 0.8
- }
- }
-
- object { Merry
- pigment { color red 1.0 }
- finish { ambient 0.1 diffuse 0.9 }
- }
-
- light_source { <200.0, 120.99, -330.0> colour White }
-
-