#version 3.7; global_settings { assumed_gamma 1.0 } //--------------------------------------- camera{ ultra_wide_angle angle 75 right x*image_width/image_height location <0.0 , 1.0 ,-3.0> look_at <0.0 , 0.0 , 0.0> } //--------------------------------------- light_source{ <1500,2500,-2500> color rgb<1,1,1> } //--------------------------------------- sky_sphere{ pigment{color rgb<1,1,1>}} //--------------------------------------- // the rotating sphere: sphere{ <0,0,0>, 0.25 texture { pigment{ rgb<1,0,0> } finish { diffuse 0.9 phong 1} } // end of texture translate < 1.0, 0, 0> rotate < 0, 0 ,360*clock> }
; POV-Ray animation ini file Antialias=Off Antialias_Threshold=0.1 Antialias_Depth=2 Input_File_Name="firstanimation.pov" Initial_Frame=1 Final_Frame=30 Initial_Clock=0 Final_Clock=1 Cyclic_Animation=on Pause_when_Done=off
povray firstanimation.ini
convert -delay 30 firstanimation*.png animation.gif