Example usage for Java javax.media.j3d Appearance fields, constructors, methods, implement or subclass
The text is from its open source code.
int | ALLOW_COLORING_ATTRIBUTES_WRITE Specifies that this Appearance object allows writing its coloringAttributes component information. |
int | ALLOW_TRANSPARENCY_ATTRIBUTES_WRITE Specifies that this Appearance object allows writing its transparency component information. |
int | ALLOW_RENDERING_ATTRIBUTES_WRITE Specifies that this Appearance object allows writing its rendering/rasterization component information. |
int | ALLOW_POLYGON_ATTRIBUTES_WRITE Specifies that this Appearance object allows writing its polygon component information. |
int | ALLOW_LINE_ATTRIBUTES_READ Specifies that this Appearance object allows reading its line component information. |
int | ALLOW_LINE_ATTRIBUTES_WRITE Specifies that this Appearance object allows writing its line component information. |
int | ALLOW_POINT_ATTRIBUTES_WRITE Specifies that this Appearance object allows writing its point component information. |
int | ALLOW_MATERIAL_READ Specifies that this Appearance object allows reading its material component information. |
int | ALLOW_MATERIAL_WRITE Specifies that this Appearance object allows writing its material component information. |
int | ALLOW_TEXTURE_WRITE Specifies that this Appearance object allows writing its texture component information. |
int | ALLOW_TEXTURE_ATTRIBUTES_WRITE Specifies that this Appearance object allows writing its textureAttributes component information. |
int | ALLOW_TEXGEN_WRITE Specifies that this Appearance object allows writing its texture coordinate generation component information. |
int | ALLOW_TEXTURE_UNIT_STATE_WRITE Specifies that this Appearance object allows writing its texture unit state component information. |
Appearance() Constructs an Appearance component object using defaults for all state variables. |
Material | getMaterial() Retrieves the current material object. |
PolygonAttributes | getPolygonAttributes() Retrieves the current polygonAttributes object. |
TransparencyAttributes | getTransparencyAttributes() Retrieves the current transparencyAttributes object. |
void | setCapability(int bit) Sets the specified capability bit. |
void | setColoringAttributes(ColoringAttributes coloringAttributes) Sets the coloringAttributes object to the specified object. |
void | setLineAttributes(LineAttributes lineAttributes) Sets the lineAttributes object to the specified object. |
void | setMaterial(Material material) Sets the material object to the specified object. |
void | setPointAttributes(PointAttributes pointAttributes) Sets the pointAttributes object to the specified object. |
void | setPolygonAttributes(PolygonAttributes polygonAttributes) Sets the polygonAttributes object to the specified object. |
void | setRenderingAttributes(RenderingAttributes renderingAttributes) Sets the renderingAttributes object to the specified object. |
void | setTexCoordGeneration(TexCoordGeneration texCoordGeneration) Sets the texCoordGeneration object to the specified object. |
void | setTexture(Texture texture) Sets the texture object to the specified object. |
void | setTextureAttributes(TextureAttributes textureAttributes) Sets the textureAttributes object to the specified object. |
void | setTextureUnitState(TextureUnitState[] stateArray) Sets the texture unit state array for this appearance object to the specified array. |
void | setTransparencyAttributes(TransparencyAttributes transparencyAttributes) Sets the transparencyAttributes object to the specified object. |