public static enum OBB.Method extends java.lang.Enum<OBB.Method>
| Enum Constant and Description |
|---|
ConvexHull
Use the convex hull of the boundables to generate the OBB
|
Covariance
Use the covariance of the boundables to generate the OBB
|
Points
Use the points of the boundables to generate the OBB
|
| Modifier and Type | Method and Description |
|---|---|
static OBB.Method |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static OBB.Method[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final OBB.Method ConvexHull
public static final OBB.Method Covariance
public static final OBB.Method Points
public static OBB.Method[] values()
for (OBB.Method c : OBB.Method.values()) System.out.println(c);
public static OBB.Method 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