public static enum TriangleIntersector.NearestFeature extends java.lang.Enum<TriangleIntersector.NearestFeature>
| Enum Constant and Description |
|---|
EDGE_01 |
EDGE_02 |
EDGE_12 |
FACE |
VERTEX_0 |
VERTEX_1 |
VERTEX_2 |
| Modifier and Type | Method and Description |
|---|---|
static TriangleIntersector.NearestFeature |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static TriangleIntersector.NearestFeature[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TriangleIntersector.NearestFeature VERTEX_0
public static final TriangleIntersector.NearestFeature VERTEX_1
public static final TriangleIntersector.NearestFeature VERTEX_2
public static final TriangleIntersector.NearestFeature EDGE_01
public static final TriangleIntersector.NearestFeature EDGE_02
public static final TriangleIntersector.NearestFeature EDGE_12
public static final TriangleIntersector.NearestFeature FACE
public static TriangleIntersector.NearestFeature[] values()
for (TriangleIntersector.NearestFeature c : TriangleIntersector.NearestFeature.values()) System.out.println(c);
public static TriangleIntersector.NearestFeature 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