public enum AxesReference extends java.lang.Enum<AxesReference>
AxesReference
indicates whether we have intrinsic rotations, where the axes
move with the object that is rotating, or extrinsic rotations, where they remain fixed
in the world around the object.Orientation
,
AxesOrder
,
Euler AnglesModifier and Type | Method and Description |
---|---|
AxesReference |
reverse() |
static AxesReference |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static AxesReference[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AxesReference EXTRINSIC
public static final AxesReference INTRINSIC
public static AxesReference[] values()
for (AxesReference c : AxesReference.values()) System.out.println(c);
public static AxesReference 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 nullpublic AxesReference reverse()