Package org.web3d.x3d.sai.navigation
Interface LOD
- All Superinterfaces:
X3DBoundedObject
,X3DChildNode
,X3DGroupingNode
,X3DNode
Defines the requirements of an X3D LOD node
- Version:
- $Revision: 1.1 $
- Author:
- Rex Melton
-
Method Summary
Modifier and TypeMethodDescriptionvoid
getCenter
(float[] val) Return the center value in the argument float[]boolean
Return the forceTransitions boolean value.int
getLevel()
Return the level int value.int
Return the number of MFFloat items in the range field.void
getRange
(float[] val) Return the range value in the argument float[]void
setCenter
(float[] val) Set the center field.void
setForceTransitions
(boolean val) Set the forceTransitions field.void
setRange
(float[] val) Set the range field.Methods inherited from interface org.web3d.x3d.sai.X3DBoundedObject
getBboxCenter, getBboxSize, setBboxCenter, setBboxSize
Methods inherited from interface org.web3d.x3d.sai.X3DGroupingNode
addChildren, getChildren, getNumChildren, removeChildren, setChildren
Methods inherited from interface org.web3d.x3d.sai.X3DNode
dispose, getField, getFieldDefinitions, getMetadata, getNodeName, getNodeType, isRealized, realize, setMetadata
-
Method Details
-
getCenter
void getCenter(float[] val) Return the center value in the argument float[]- Parameters:
val
- The float[] to initialize.
-
setCenter
void setCenter(float[] val) Set the center field.- Parameters:
val
- The float[] to set.
-
getNumRange
int getNumRange()Return the number of MFFloat items in the range field.- Returns:
- the number of MFFloat items in the range field.
-
getRange
void getRange(float[] val) Return the range value in the argument float[]- Parameters:
val
- The float[] to initialize.
-
setRange
void setRange(float[] val) Set the range field.- Parameters:
val
- The float[] to set.
-
getLevel
int getLevel()Return the level int value.- Returns:
- The level int value.
-
getForceTransitions
boolean getForceTransitions()Return the forceTransitions boolean value.- Returns:
- The forceTransitions boolean value.
-
setForceTransitions
void setForceTransitions(boolean val) Set the forceTransitions field.- Parameters:
val
- The boolean to set.
-