sphere{<0,0,0>, 1
texture{
pigment{
// mapps an image on the xy plane
// from <0,0,0> to <1,1,0>
// (aspect ratio 1:1)
image_map{ gif "plasma3.gif"
// imagetype "file name" - Path + .tga etc.
// accepted types of images: gif, tga, iff, ppm, pgm, png, jpeg, tiff, sys
map_type 0 // 0=planar, 1=spherical, 2=cylindrical, 5=torus
interpolate 2
// 0=none, 1=linear, 2=bilinear, 4=normalized distance
once //
}} // end of image_map, end of pigment
finish {ambient 0.15 diffuse 0.85 phong 1}// end of finish
scale 2 translate<-1,-1,0>} // end of texture
translate<0.5,1.2,0>} // end of sphere ------------------
|