Package org.web3d.x3d.sai
Interface X3DNBodyCollidableNode
- All Superinterfaces:
X3DBoundedObject
,X3DChildNode
,X3DNode
- All Known Subinterfaces:
CollidableOffset
,CollidableShape
- All Known Implementing Classes:
SAICollidableOffset
,SAICollidableOffset
,SAICollidableShape
,SAICollidableShape
Defines the requirements of an X3DNBodyCollidableNode abstract node type
- Version:
- $Revision: 1.1 $
- Author:
- Rex Melton
-
Method Summary
Modifier and TypeMethodDescriptionboolean
Return the enabled boolean value.void
getRotation
(float[] val) Return the rotation value in the argument float[]void
getTranslation
(float[] val) Return the translation value in the argument float[]void
setEnabled
(boolean val) Set the enabled field.void
setRotation
(float[] val) Set the rotation field.void
setTranslation
(float[] val) Set the translation field.Methods inherited from interface org.web3d.x3d.sai.X3DBoundedObject
getBboxCenter, getBboxSize, setBboxCenter, setBboxSize
Methods inherited from interface org.web3d.x3d.sai.X3DNode
dispose, getField, getFieldDefinitions, getMetadata, getNodeName, getNodeType, isRealized, realize, setMetadata
-
Method Details
-
getEnabled
boolean getEnabled()Return the enabled boolean value.- Returns:
- The enabled boolean value.
-
setEnabled
void setEnabled(boolean val) Set the enabled field.- Parameters:
val
- The boolean to set.
-
getRotation
void getRotation(float[] val) Return the rotation value in the argument float[]- Parameters:
val
- The float[] to initialize.
-
setRotation
void setRotation(float[] val) Set the rotation field.- Parameters:
val
- The float[] to set.
-
getTranslation
void getTranslation(float[] val) Return the translation value in the argument float[]- Parameters:
val
- The float[] to initialize.
-
setTranslation
void setTranslation(float[] val) Set the translation field.- Parameters:
val
- The float[] to set.
-