java.lang.Object
java.lang.Enum<AxisSequenceType>
org.apache.commons.geometry.euclidean.threed.rotation.AxisSequenceType
All Implemented Interfaces:
Serializable, Comparable<AxisSequenceType>

public enum AxisSequenceType extends Enum<AxisSequenceType>
Defines different types of rotation axis sequences.
  • Enum Constant Details

    • EULER

      public static final AxisSequenceType EULER
      Represents Euler angles, which consist of axis sequences in the pattern ABA. For example, the sequences ZXZ, 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

      public static final AxisSequenceType TAIT_BRYAN
      Represents Tait-Bryan angles, which consist of axis sequences in the pattern ABC. For example, the sequences XYZ, ZXY, etc. fit this definition. Tait-Bryan angles are also called Cardan angles.
      See Also:
  • Constructor Details

    • AxisSequenceType

      private AxisSequenceType()
  • Method Details

    • values

      public static AxisSequenceType[] 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

      public static AxisSequenceType valueOf(String name)
      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 name
      NullPointerException - if the argument is null