// Persistence Of Vision raytracer version 3.1.a // Default ".pov" file for RunPOV global_settings { max_trace_level 50 } #include "finish.inc" #include "textures.inc" #include "colors.inc" #include "params.inc" background { color White} camera { location < 0, 0, 6 > right 0.45/magnify * < wd/ht, 0, 0 > up 0.45/magnify * < 0, 1, 0 > sky < 0, 1, 0 > look_at < 0, 0, 0 > } // sphere{ <0,0,0>, 1 pigment{ color rgbt <0.8,1,0.8,0.8> } } light_source { < +05, +20, -10> 1.00 * White } light_source { < -10, -10, -15> 0.40 * White } light_source { < -15, +10, -15> 0.30 * White }