sphere{<0,0,0>, 1
texture{
pigment{
// Projiziert ein Bild in die xy-Ebene
// von <0,0,0> bis <1,1,0>
// (Seitenverhältnis 1:1)
image_map{ gif "plasma3.gif"
// Bildtyp "Bilddateiname" - Pfadname + Endung
// erlaubte Bildtypen: 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 // falls Bild nicht wiederholt werden soll.
}} // 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 ------------------
|