public static enum AEMParser.AEMRotationOrder extends Enum<AEMParser.AEMRotationOrder>
RotationOrder
.Enum Constant and Description |
---|
XYX
This ordered set of rotations is around X, then around Y, then around X.
|
XYZ
This ordered set of rotations is around X, then around Y, then around Z.
|
XZX
This ordered set of rotations is around X, then around Z, then around X.
|
XZY
This ordered set of rotations is around X, then around Z, then around Y.
|
YXY
This ordered set of rotations is around Y, then around X, then around Y.
|
YXZ
This ordered set of rotations is around Y, then around X, then around Z.
|
YZX
This ordered set of rotations is around Y, then around Z, then around X.
|
YZY
This ordered set of rotations is around Y, then around Z, then around Y.
|
ZXY
This ordered set of rotations is around Z, then around X, then around Y.
|
ZXZ
This ordered set of rotations is around Z, then around X, then around Z.
|
ZYX
This ordered set of rotations is around Z, then around Y, then around X.
|
ZYZ
This ordered set of rotations is around Z, then around Y, then around Z.
|
Modifier and Type | Method and Description |
---|---|
static RotationOrder |
getRotationOrder(String orderName)
Get the rotation order for the given name.
|
static AEMParser.AEMRotationOrder |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AEMParser.AEMRotationOrder[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AEMParser.AEMRotationOrder XYZ
public static final AEMParser.AEMRotationOrder XZY
public static final AEMParser.AEMRotationOrder YXZ
public static final AEMParser.AEMRotationOrder YZX
public static final AEMParser.AEMRotationOrder ZXY
public static final AEMParser.AEMRotationOrder ZYX
public static final AEMParser.AEMRotationOrder XYX
public static final AEMParser.AEMRotationOrder XZX
public static final AEMParser.AEMRotationOrder YXY
public static final AEMParser.AEMRotationOrder YZY
public static final AEMParser.AEMRotationOrder ZXZ
public static final AEMParser.AEMRotationOrder ZYZ
public static AEMParser.AEMRotationOrder[] values()
for (AEMParser.AEMRotationOrder c : AEMParser.AEMRotationOrder.values()) System.out.println(c);
public static AEMParser.AEMRotationOrder valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullpublic static RotationOrder getRotationOrder(String orderName)
orderName
- name of the rotation order (e.g. "123")Copyright © 2002-2020 CS GROUP. All rights reserved.