Example usage for Java javax.media.j3d Texture fields, constructors, methods, implement or subclass
The text is from its open source code.
int | ALLOW_ENABLE_WRITE Specifies that this Texture object allows writing its enable flag. |
int | ALLOW_IMAGE_WRITE Specifies that this Texture object allows writing its image component information. |
int | FASTEST Uses the fastest available method for processing geometry. |
int | NICEST Uses the nicest available method for processing geometry. |
int | BASE_LEVEL_POINT Select the nearest texel in level 0 texture map. |
int | BASE_LEVEL_LINEAR Performs bilinear interpolation on the four nearest texels in level 0 texture map. |
int | MULTI_LEVEL_POINT Selects the nearest texel in the nearest mipmap. |
int | MULTI_LEVEL_LINEAR Performs tri-linear interpolation of texels between four texels each from two nearest mipmap levels. |
int | CLAMP Clamps texture coordinates to be in the range [0, 1]. |
int | WRAP Repeats the texture by wrapping texture coordinates that are outside the range [0,1]. |
int | BASE_LEVEL Indicates that Texture object only has one level. |
int | MULTI_LEVEL_MIPMAP Indicates that this Texture object has multiple images, one for each mipmap level. |
int | RGB Specifies Texture contains Red, Green and Blue color values. |
int | RGBA Specifies Texture contains Red, Green, Blue color values and Alpha value. |
ImageComponent | getImage(int level) Retrieves the image for a specified mipmap level. |
void | setBoundaryColor(Color4f boundaryColor) Sets the texture boundary color for this texture object. |
void | setBoundaryColor(float r, float g, float b, float a) Sets the texture boundary color for this texture object. |
void | setBoundaryModeS(int boundaryModeS) Sets the boundary mode for the S coordinate in this texture object. |
void | setBoundaryModeT(int boundaryModeT) Sets the boundary mode for the T coordinate in this texture object. |
void | setEnable(boolean state) Enables or disables texture mapping for this appearance component object. |
void | setMagFilter(int magFilter) Sets the magnification filter function. |
void | setMinFilter(int minFilter) Sets the minification filter function. |
void | setMipMapMode(int mipMapMode) Sets mipmap mode for texture mapping for this texture object. |