#version 3.7; global_settings { assumed_gamma 1.3 max_trace_level 16 radiosity { pretrace_start 0.08 pretrace_end 0.01 count 200 nearest_count 10 error_bound 0.5 recursion_limit 2 low_error_factor 0.5 gray_threshold 0.0 } } background { color rgb <0.93, 0.95, 0.98> } camera { location <6.5, 4.0, -9.5> look_at <0.0, 1.2, 0.0> angle 40 up <0,9,0> right <16,0,0> // right,up -> 16:9 } #declare Finish_Matte = finish { diffuse 0.85 specular 0.10 roughness 0.06 }; #declare Finish_Floor = finish { diffuse 0.90 specular 0.05 roughness 0.12 }; light_source { <8, 10, -10> color rgb <1.00, 0.85, 0.70>*1.2 area_light <2.2,0,0>, <0,0,2.2>, 5, 5 adaptive 1 jitter } light_source { <-10, 7, -2> color rgb <1.00, 0.90, 0.80>*0.6 area_light <1.6,0,0>, <0,0,1.6>, 4, 4 adaptive 1 jitter } plane { y, 0 pigment { color rgb <0.78, 0.80, 0.83> } finish { Finish_Floor } } sphere { <0, 1.0, 0>, 1.0 pigment { color rgb <0.92, 0.30, 0.28> } finish { Finish_Matte } } box { <-1.0, 0.0, -1.0>, <1.0, 2.0, 1.0> translate <3.0, 0.0, 0.0> pigment { color rgb <0.25, 0.55, 0.90> } finish { Finish_Matte } } cylinder { <0, 0, 0>, <0, 2.0, 0>, 0.7 translate <-3.0, 0.0, 0.5> pigment { color rgb <0.35, 0.80, 0.55> } finish { Finish_Matte } }