public static enum SurfaceMeshIntersector.RegionType extends java.lang.Enum<SurfaceMeshIntersector.RegionType>
| Enum Constant and Description |
|---|
INSIDE
Compute the penetration regions that are inside
the other mesh.
|
NONE
Do not compute any penetration regions
|
OUTSIDE
Compute the penetration regions that are outside
the other mesh.
|
| Modifier and Type | Method and Description |
|---|---|
static SurfaceMeshIntersector.RegionType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static SurfaceMeshIntersector.RegionType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SurfaceMeshIntersector.RegionType NONE
public static final SurfaceMeshIntersector.RegionType INSIDE
public static final SurfaceMeshIntersector.RegionType OUTSIDE
public static SurfaceMeshIntersector.RegionType[] values()
for (SurfaceMeshIntersector.RegionType c : SurfaceMeshIntersector.RegionType.values()) System.out.println(c);
public static SurfaceMeshIntersector.RegionType 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