Example usage for Java javax.media.j3d Texture2D fields, constructors, methods, implement or subclass
The text is from its open source code.
Texture2D(int mipMapMode, int format, int width, int height) Constructs an empty Texture2D object with specified mipmapMode format, width and height. | |
Texture2D() Constructs a texture object using default values. |
ImageComponent | getImage(int level) Retrieves the image for a specified mipmap level. |
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 | setCapability(int bit) Sets the specified capability bit. |
void | setEnable(boolean state) Enables or disables texture mapping for this appearance component object. |
void | setImage(int level, ImageComponent image) Sets the image for a specified mipmap level. |
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. |