public static enum CollisionBehavior.ColorMapType extends java.lang.Enum<CollisionBehavior.ColorMapType>
| Enum Constant and Description |
|---|
CONTACT_PRESSURE
Draw a color map of the contact pressure.
|
NONE
No color map should be drawn.
|
PENETRATION_DEPTH
Draw a color map of the penetration depth.
|
| Modifier and Type | Method and Description |
|---|---|
static CollisionBehavior.ColorMapType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static CollisionBehavior.ColorMapType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CollisionBehavior.ColorMapType NONE
public static final CollisionBehavior.ColorMapType PENETRATION_DEPTH
public static final CollisionBehavior.ColorMapType CONTACT_PRESSURE
CollisionBehavior.Method).public static CollisionBehavior.ColorMapType[] values()
for (CollisionBehavior.ColorMapType c : CollisionBehavior.ColorMapType.values()) System.out.println(c);
public static CollisionBehavior.ColorMapType 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