#include "textures.inc" global_settings { max_trace_level 10 adc_bailout 1/255 } camera { angle 60 location <0,-10000,0> look_at <0,1000,0> } sky_sphere { pigment { color rgb <0.6, 0.7, 1> } } light_source { <0,1000,1000> color rgb 1.0 } #declare P_Cloud = pigment { wrinkles turbulence <0.5, 0.5, 0.5> octaves 7 omega 0.5 lambda 3 color_map { [0.00 color rgbt <1.00,1.00,1.00,1.00>] [0.50 color rgbt <1.00,1.00,1.00,1.00>] [0.60 color rgbt <0.50,0.50,0.50,0.50>] [1.00 color rgbt <1.00,1.00,1.00,0.00>] } scale <1200,1200,1200> } union { plane { <0, -1, 0> 0 texture { pigment { P_Cloud } finish { ambient 1.0 } } } plane { <0, -1, 0> 0 translate <0, 5, 0> texture { pigment { P_Cloud } finish { ambient 0.6 } } } plane { <0, -1, 0> 0 translate <0, 10, 0> texture { pigment { P_Cloud } finish { ambient 0.8 } } } plane { <0, -1, 0> 0 translate <0, 15, 0> texture { pigment { P_Cloud } finish { ambient 0.4 } } } translate <0, 1000, 0> }