Java javax.media.j3d TransparencyAttributes fields, constructors, methods, implement or subclass

Example usage for Java javax.media.j3d TransparencyAttributes fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for javax.media.j3d TransparencyAttributes.

The text is from its open source code.

Field

intALLOW_MODE_WRITE
Specifies that this TransparencyAttributes object allows writing its transparency mode component information.
intALLOW_VALUE_WRITE
Specifies that this TransparencyAttributes object allows writing its transparency value.
intALLOW_BLEND_FUNCTION_WRITE
Specifies that this TransparencyAttributes object allows writing its blend function.
intFASTEST
Use the fastest available method for transparency.
intNICEST
Use the nicest available method for transparency.
intBLENDED
Use alpha blended transparency.
intSCREEN_DOOR
Use screen-door transparency.
intNONE
No transparency, opaque object.
intBLEND_ZERO
Blend function: f = 0.
intBLEND_ONE
Blend function: f = 1.
intBLEND_SRC_ALPHA
Blend function: f = alphasrc.
intBLEND_ONE_MINUS_SRC_ALPHA
Blend function: f = 1-alphasrc.

Constructor

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.

Method

voidsetCapability(int bit)
Sets the specified capability bit.
voidsetTransparency(float transparency)
Sets this appearance's transparency.
voidsetTransparencyMode(int transparencyMode)
Sets the transparency mode for this appearance component object.