public enum RotationOrder extends java.lang.Enum<RotationOrder>
| Enum Constant and Description |
|---|
XYZ
Rotate in X,Y,Z order
|
XZY
Rotate in X,Z,Y order
|
YXZ
Rotate in Y,X,Z order
|
YZX
Rotate in Y,Z,X order
|
ZXY
Rotate in Z,X,Y order
|
ZYX
Rotate in Z,Y,X order
|
| Modifier and Type | Method and Description |
|---|---|
static RotationOrder |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static RotationOrder[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RotationOrder XYZ
public static final RotationOrder XZY
public static final RotationOrder YZX
public static final RotationOrder YXZ
public static final RotationOrder ZXY
public static final RotationOrder ZYX
public static RotationOrder[] values()
for (RotationOrder c : RotationOrder.values()) System.out.println(c);
public static RotationOrder 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