Example usage for Java javax.media.j3d Shape3D fields, constructors, methods, implement or subclass
The text is from its open source code.
int | ALLOW_GEOMETRY_READ Specifies that the node allows read access to its geometry information. |
int | ALLOW_GEOMETRY_WRITE Specifies that the node allows write access to its geometry information. |
int | ALLOW_APPEARANCE_READ Specifies that the node allows read access to its appearance information. |
int | ALLOW_APPEARANCE_WRITE Specifies that the node allows write access to its appearance information. |
int | ALLOW_APPEARANCE_OVERRIDE_WRITE Specifies that this node allows writing its appearance override enable flag. |
Shape3D(Geometry geometry, Appearance appearance) Constructs and initializes a Shape3D node with the specified geometry and appearance components. | |
Shape3D(Geometry geometry) Constructs and initializes a Shape3D node with the specified geometry component and a null appearance component. | |
Shape3D() Constructs a Shape3D node with default parameters. |
Appearance | getAppearance() Retrieves the appearance component of this shape node. |
Bounds | getBounds() See parent class for the documentation on getBounds(). |
Geometry | getGeometry() Retrieves the geometry component at index 0 from this Shape3D node's list of geometry components. |
void | setAppearance(Appearance appearance) Sets the appearance component of this Shape3D node. |
void | setBounds(Bounds bounds) Sets the geometric bounds of a node. |
void | setBoundsAutoCompute(boolean autoCompute) Turns the automatic calcuation of geometric bounds of a node on/off. |
void | setCapability(int bit) Sets the specified capability bit. |
void | setGeometry(Geometry geometry) Replaces the geometry component at index 0 in this Shape3D node's list of geometry components with the specified geometry component. |
void | setUserData(Object userData) Sets the userData field associated with this scene graph object. |