Rings
Version 0.3

Uses of Interface
threeD.raytracer.engine.Texture

Packages that use Texture
threeD.raytracer.engine   
threeD.raytracer.shaders   
threeD.raytracer.textures   
 

Uses of Texture in threeD.raytracer.engine
 

Methods in 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 threeD.raytracer.engine with parameters of type Texture
 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.
 void AbstractSurface.addTexture(Texture texture)
          Appends the specified Texture object to the list of Texture objects used to color this AbstractSurface.
 

Uses of Texture in threeD.raytracer.shaders
 

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

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

Constructors in 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 threeD.raytracer.textures
 

Classes in 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.
 


Rings
Version 0.3

Copyright 2003-05 Mike Murray