Package org.web3d.x3d.sai.geometry3d
Interface Cylinder
- All Superinterfaces:
X3DGeometryNode,X3DNode
- All Known Implementing Classes:
SAICylinder,SAICylinder
Defines the requirements of an X3D Cylinder node
- Version:
- $Revision: 1.1 $
- Author:
- Rex Melton
-
Method Summary
Modifier and TypeMethodDescriptionbooleanReturn the bottom boolean value.floatReturn the height float value.floatReturn the radius float value.booleangetSide()Return the side boolean value.booleangetSolid()Return the solid boolean value.booleangetTop()Return the top boolean value.voidsetBottom(boolean val) Set the bottom field.voidsetHeight(float val) Set the height field.voidsetRadius(float val) Set the radius field.voidsetSide(boolean val) Set the side field.voidsetSolid(boolean val) Set the solid field.voidsetTop(boolean val) Set the top field.Methods inherited from interface org.web3d.x3d.sai.X3DNode
dispose, getField, getFieldDefinitions, getMetadata, getNodeName, getNodeType, isRealized, realize, setMetadata
-
Method Details
-
getSolid
boolean getSolid()Return the solid boolean value.- Returns:
- The solid boolean value.
-
setSolid
void setSolid(boolean val) Set the solid field.- Parameters:
val- The boolean to set.
-
getRadius
float getRadius()Return the radius float value.- Returns:
- The radius float value.
-
setRadius
void setRadius(float val) Set the radius field.- Parameters:
val- The float to set.
-
getHeight
float getHeight()Return the height float value.- Returns:
- The height float value.
-
setHeight
void setHeight(float val) Set the height field.- Parameters:
val- The float to set.
-
getBottom
boolean getBottom()Return the bottom boolean value.- Returns:
- The bottom boolean value.
-
setBottom
void setBottom(boolean val) Set the bottom field.- Parameters:
val- The boolean to set.
-
getSide
boolean getSide()Return the side boolean value.- Returns:
- The side boolean value.
-
setSide
void setSide(boolean val) Set the side field.- Parameters:
val- The boolean to set.
-
getTop
boolean getTop()Return the top boolean value.- Returns:
- The top boolean value.
-
setTop
void setTop(boolean val) Set the top field.- Parameters:
val- The boolean to set.
-