Example usage for Java javax.media.j3d TransparencyAttributes fields, constructors, methods, implement or subclass
The text is from its open source code.
int | ALLOW_MODE_WRITE Specifies that this TransparencyAttributes object allows writing its transparency mode component information. |
int | ALLOW_VALUE_WRITE Specifies that this TransparencyAttributes object allows writing its transparency value. |
int | ALLOW_BLEND_FUNCTION_WRITE Specifies that this TransparencyAttributes object allows writing its blend function. |
int | FASTEST Use the fastest available method for transparency. |
int | NICEST Use the nicest available method for transparency. |
int | BLENDED Use alpha blended transparency. |
int | SCREEN_DOOR Use screen-door transparency. |
int | NONE No transparency, opaque object. |
int | BLEND_ZERO Blend function: f = 0 . |
int | BLEND_ONE Blend function: f = 1 . |
int | BLEND_SRC_ALPHA Blend function: f = alphasrc . |
int | BLEND_ONE_MINUS_SRC_ALPHA Blend function: f = 1-alphasrc . |
TransparencyAttributes(int tMode, float tVal, int srcBlendFunction, int dstBlendFunction) Construct TransparencyAttributes object with specified values. | |
TransparencyAttributes() Constructs a TransparencyAttributes object with default parameters. | |
TransparencyAttributes(int tMode, float tVal) Construct TransparencyAttributes object with specified values. |
void | setCapability(int bit) Sets the specified capability bit. |
void | setTransparency(float transparency) Sets this appearance's transparency. |
void | setTransparencyMode(int transparencyMode) Sets the transparency mode for this appearance component object. |