maspack.geometry
Enum OBB.Method

java.lang.Object
  extended by java.lang.Enum<OBB.Method>
      extended by maspack.geometry.OBB.Method
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<OBB.Method>
Enclosing class:
OBB

public static enum OBB.Method
extends java.lang.Enum<OBB.Method>

Method used to generate an OBB from a set of boundables


Enum Constant Summary
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
 
Method Summary
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.
 
Methods inherited from class java.lang.Enum
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

ConvexHull

public static final OBB.Method ConvexHull
Use the convex hull of the boundables to generate the OBB


Covariance

public static final OBB.Method Covariance
Use the covariance of the boundables to generate the OBB


Points

public static final OBB.Method Points
Use the points of the boundables to generate the OBB

Method Detail

values

public static OBB.Method[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
for (OBB.Method c : OBB.Method.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static OBB.Method valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

Parameters:
name - the name of the enum constant to be returned.
Returns:
the enum constant with the specified name
Throws:
java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
java.lang.NullPointerException - if the argument is null