// This file was created by Noam Lewis // You may use, distribute and modify this file unless written otherwise. Just keep my name on it... // Persistence of Vision Ray Tracer Scene Description File, MegPov Ver. 0.4 // File: lando.pov // Date: April 3, 2000 // Desc: Landscape #include "lando.inc" #version unofficial MegaPov 0.4; camera { location <0.0 , 55.0 ,-70.0> look_at <0.0 , 20.0 , 30.0> } light_source { 0*x // light's position (translated below) color red 1.0 green 1.0 blue 1.0 // light's color translate <-20, 3000, -20> fade_distance 3000 fade_power 2 } plane { y, 0.0 material { Pacific } hollow on } plane { y, -1000.0 material { texture { pigment { color rgb <0.2, 0.1, 0.1> } } } hollow on } height_field { png "landohf.png" //smooth water_level 0.001 material { texture { pigment { color rgb 1 } finish { reflection 0.2 conserve_energy } } } translate <-0.5,0,-0.5> scale <250,50,250> translate -0.1*y } media { intervals 10 samples 5, 5 confidence 0.9 variance 1/128 ratio 1 scattering {1, rgb <0.1,0.1,0.1> extinction 1} }