Toribash
Here it is.

global_settings { 
        radiosity {
                pretrace_start 0.08
                pretrace_end   0.01
                 count 250

                nearest_count 10
                error_bound 0.5
                recursion_limit 1

                low_error_factor 0.2
                gray_threshold 0.0
                minimum_reuse 0.015
                brightness .6

                adc_bailout 0.01/2
  }
  }
  
  
 

camera{
        location <0,-2.8,0>
        sky <0,0,1>
        up<0,1,0>
        right<1,0,0>
        look_at <0,0,0>        
        }        
        
        
        
        
        

#declare finisher = finish{ambient 0.45 diffuse .55 brilliance .3 phong .2 specular 0.3 metallic 0}




union{ 
        sphere{<0,0,0>,1   
                pigment{   
                        image_map{ 
                                tga "C:/Documents and Settings/user/Desktop/head.tga"
                                }
                        warp{
                                spherical  
                                orientation z 
                                dist_exp 0
                                }
                        scale<1,1,1>
                        rotate<90,0,90> 
                        }
        finish{ finisher } 
                                
                }
        sphere{<0,.05*5,(2.44-2.59)*5>,.11*5 // neck sphere at (0.25,-.75,0) with radius .55
                pigment{ color rgb <51/255,51/255,51/255>*.74} 
                finish{finisher} 
                }

translate(<0,0,.15>) // centers the head in the camera
#declare fr=frame_number; 




#if (fr<121)
#rotate(<0,0,3*(fr)>)
#end
#if (fr>120)
#rotate(<3*(fr),0,0>)
#end 









        }                
                               
       
background { color rgb <224/255,224/255,224/255> } 
       

light_source {
    <-10, -10, 6>
    color 1
    area_light<10,0,0>,<0,10,0>,9,9
    adaptive 1 
    }
Copy/paste to notepad and save as name.pov

Dont forget to change the user.
Last edited by Eddy; Mar 22, 2010 at 01:25 PM.