public enum DrawMeshAs extends java.lang.Enum<DrawMeshAs>
SurfaceMeshRenderableSeries3D
Enum Constant and Description |
---|
Contours
Draw the mesh as Contours only
|
SolidMesh
Draw the mesh as Solid only
|
SolidWireframe
Draw the mesh as solid surface plus wireframe
|
SolidWireframeWithContours
Draw the mesh as solid surface plus wireframe plus contours
|
SolidWithContours
Draw the mesh as Solid plus contours
|
Wireframe
Draw the mesh as wireframe only
|
Modifier and Type | Field and Description |
---|---|
int |
drawingFeatures |
Modifier and Type | Method and Description |
---|---|
static DrawMeshAs |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static DrawMeshAs[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DrawMeshAs SolidWireframe
public static final DrawMeshAs Wireframe
public static final DrawMeshAs SolidMesh
public static final DrawMeshAs Contours
public static final DrawMeshAs SolidWithContours
public static final DrawMeshAs SolidWireframeWithContours
public static DrawMeshAs[] values()
for (DrawMeshAs c : DrawMeshAs.values()) System.out.println(c);
public static DrawMeshAs valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null