//-------------------------------------------------------------------------- #version 3.7; global_settings{ assumed_gamma 1.0 } #default{ finish{ ambient 0.1 diffuse 0.9 }} // camera ------------------------------------------------------------------ camera {perspective angle 12 location <0.4001 , 0.8503 ,0.342> right x*image_width/image_height look_at <0.0 , 0.0 , 0.0>} // sun ---------------------------------------------------------------------- light_source{< 3000,3000,-3000> color rgb<1,1,1>} // sky ---------------------------------------------------------------------- sky_sphere { pigment { gradient <0,1,0> color_map { [0.00 rgb <0.6,0.7,1.0>] [0.35 rgb <0.1,0.0,0.8>] [0.65 rgb <0.1,0.0,0.8>] [1.00 rgb <0.6,0.7,1.0>] } scale 2 } // end of pigment } //end of skysphere // ground ------------------------------------------------------------------- plane{ <0,1,0>, 0 texture{ pigment{ checker color rgb<1,1,1>*1.2 color rgb<0.25,0.15,0.1>*0} finish { } } // end of texture } // end of plane //--------------------------------------------------------------------------- //---------------------------- objects in scene ---------------------------- //--------------------------------------------------------------------------- intersection{ torus{ -0.01247, 0.02357 rotate <-90,0,0> } sphere{ <0,0,0>,0.02 } pigment{rgb<0.34,0.38,0.12>} }