// Persistence of Vision Ray Tracer Scene Description File // File: .pov // Vers: 3 // Desc: // Date: May 16, 1997 // Auth: Beth Randall // Graphics Title #include "colors.inc" // Standard Color definitions #include "textures.inc" // Standard Texture definitions plane {z, 15 pigment {MandarinOrange} } text { ttf "cyrvetic.ttf" "GRAPHICS" 1,0 pigment { Blue } translate <-2.5, 1, -1> scale <1.5, 1.5, 1.5> } camera { angle 10 location <1, 9, -50> look_at <0, 2, 0> } plane { <0, 1, 0>, -1 pigment { checker color MandarinOrange, color Grey } } light_source { <2, 4, -3> color White }