Enum AxisSequenceType
java.lang.Object
java.lang.Enum<AxisSequenceType>
org.apache.commons.geometry.euclidean.threed.rotation.AxisSequenceType
- All Implemented Interfaces:
Serializable
,Comparable<AxisSequenceType>
,java.lang.constant.Constable
Defines different types of rotation axis sequences.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionRepresents Euler angles, which consist of axis sequences in the pattern ABA.Represents Tait-Bryan angles, which consist of axis sequences in the pattern ABC. -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionstatic AxisSequenceType
Returns the enum constant of this type with the specified name.static AxisSequenceType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
EULER
Represents Euler angles, which consist of axis sequences in the pattern ABA. For example, the sequencesZXZ
,XYX
, etc. fit this definition. Other types of sequences that do not match this pattern are often called "Euler angles" in common usage. However, this enum value is intended to represent only those sequences that match exactly, ie "proper" Euler angles.- See Also:
-
TAIT_BRYAN
Represents Tait-Bryan angles, which consist of axis sequences in the pattern ABC. For example, the sequencesXYZ
,ZXY
, etc. fit this definition. Tait-Bryan angles are also called Cardan angles.- See Also:
-
-
Constructor Details
-
AxisSequenceType
private AxisSequenceType()
-
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
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:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-