Uses of Interface
net.sf.j3d.threeD.raytracer.engine.Texture

Packages that use Texture
net.sf.j3d.threeD.raytracer.engine   
net.sf.j3d.threeD.raytracer.shaders   
net.sf.j3d.threeD.raytracer.textures   
 

Uses of Texture in net.sf.j3d.threeD.raytracer.engine
 

Methods in net.sf.j3d.threeD.raytracer.engine that return Texture
 Texture AbstractSurface.getTexture(int index)
          Returns the Texture object at the specified index in the list of Texture objects used to color this AbstractSurface.
 Texture[] AbstractSurface.getTextures()
          Returns the list of Texture objects used to color this AbstractSurface as an array of Texture objects.
 

Methods in net.sf.j3d.threeD.raytracer.engine with parameters of type Texture
 void AbstractSurface.addTexture(Texture texture)
          Appends the specified Texture object to the list of Texture objects used to color this AbstractSurface.
 void AbstractSurface.setTexture(int index, Texture texture)
          Sets the Texture object (used to color this AbstractSurface) at the specified index to the specified Texture object.
 void AbstractSurface.setTextures(Texture[] textures)
          Sets the Texture objects (used to color this AbstractSurface) to those specified.
 

Uses of Texture in net.sf.j3d.threeD.raytracer.shaders
 

Methods in net.sf.j3d.threeD.raytracer.shaders that return Texture
 Texture ReflectionShader.getEnvironmentMap()
           
 Texture TextureShader.getTexture()
           
 

Methods in net.sf.j3d.threeD.raytracer.shaders with parameters of type Texture
 void ReflectionShader.setEnvironmentMap(Texture map)
          Sets the Texture object used as an environment map for this ReflectionShader object.
 void TextureShader.setTexture(Texture t)
          Sets the Texture object used by this TextureShader object.
 

Constructors in net.sf.j3d.threeD.raytracer.shaders with parameters of type Texture
TextureShader(Texture t, ShaderFactory factory)
          Constructs a new TextureShader object using the specified Texture and ShaderFactory objects.
 

Uses of Texture in net.sf.j3d.threeD.raytracer.textures
 

Classes in net.sf.j3d.threeD.raytracer.textures that implement Texture
 class ImageTexture
          An ImageTexture object can be used to provide an image as the color data for a surface.
 class StripeTexture
          The StripeTexture object can be used to stripe a surface.