// WIND / GALE '99.06 // By Tsutomu HIGO E-mail: nj2t-hg@asahi-net.or.jp #version 3.1; global_settings { max_trace_level 30 assumed_gamma 2.2 } light_source {<100, -500, 500> color <1,1,1>} camera { location <0,-0.06,-10> angle 80 look_at <0, -5, 0> } //Map sphere { <0, -1000, 0> 1000 pigment {wrinkles color_map{ [0.25 color rgbt <0.6,1,0,0>] //plane [0.315 color rgbt <0.8,0.7,0.6,0.1>]//rock [0.34 color rgbt <2.,2.,2.,0.1>] //wave [0.45 color rgbt <1.5,2.2,3,0.6>] //water [1 color rgbt <0.5,0.5,2,0.95>] //sea } turbulence 1.5 scale 1000 } } //Clouds sphere { <0, -1000, 0> 1005 pigment {wrinkles color_map{ [0 color rgbt <10,10,10,0.7>] [0.4 color rgbt <3,3,5,0.8>] [0.55 color rgbt <0.8,0.8,1,0.9>] [0.6 color rgbt <0.3,0.3,0.7,0.99>] } turbulence 0.5 translate <0,5,0> scale <1,1.5,1> rotate z*-60 scale 30 } }