#version 3.7; global_settings { assumed_gamma 1.0 max_trace_level 8 } background { color rgb <0.92, 0.94, 0.98> } // Camera camera { location <0, 2.2, -6.5> look_at <0, 1.0, 0> angle 40 } // Lights (warm, soft shadows) light_source { <8, 10, -8> color rgb <1.00, 0.88, 0.72> area_light <2,0,0>, <0,0,2>, 5, 5 adaptive 1 jitter } light_source { <-6, 6, -2> color rgb <1.00, 0.92, 0.82>*0.35 area_light <1.5,0,0>, <0,0,1.5>, 4, 4 adaptive 1 jitter } // Ground plane plane { y, 0 pigment { color rgb <0.82, 0.84, 0.86> } finish { diffuse 0.85 specular 0.05 roughness 0.08 } } // Simple reference object sphere { <0, 1.0, 0>, 1.0 pigment { color rgb <0.55, 0.65, 0.95> } finish { diffuse 0.85 specular 0.10 roughness 0.06 } }