Package | Description |
---|---|
agi.foundation.coordinates |
Contains types for quantifying and converting between various coordinate representations.
|
Modifier and Type | Method and Description |
---|---|
static YawPitchRollIndicator |
YawPitchRollIndicator.getDefault()
Get the enum constant that is considered to be the default.
|
static YawPitchRollIndicator |
YawPitchRollIndicator.getFromValue(int value)
Get the enum constant that is associated with the given numeric value.
|
YawPitchRollIndicator |
YawPitchRoll.getSequence()
Gets the order of the axes rotations for this instance.
|
static YawPitchRollIndicator |
YawPitchRoll.indicator(AxisIndicator first,
AxisIndicator second,
AxisIndicator third)
Composes a
YawPitchRollIndicator from three individual AxisIndicator items. |
static YawPitchRollIndicator |
YawPitchRollIndicator.valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static YawPitchRollIndicator[] |
YawPitchRollIndicator.values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
Modifier and Type | Method and Description |
---|---|
static AxisIndicator |
YawPitchRoll.firstAxis(YawPitchRollIndicator sequence)
Determines the first axis indicator from the provided
YawPitchRollIndicator . |
static AxisIndicator |
YawPitchRoll.secondAxis(YawPitchRollIndicator sequence)
Determines the second axis indicator from the provided
YawPitchRollIndicator . |
static AxisIndicator |
YawPitchRoll.thirdAxis(YawPitchRollIndicator sequence)
Determines the third axis indicator from the provided
YawPitchRollIndicator . |
Constructor and Description |
---|
YawPitchRoll(AngleAxisRotation rotation,
YawPitchRollIndicator sequence)
Initializes a
EulerSequence sequence from the provided AngleAxisRotation and sequence. |
YawPitchRoll(double angle1,
double angle2,
double angle3,
YawPitchRollIndicator sequence)
Initializes a
YawPitchRoll sequence from the provided angles and sequence. |
YawPitchRoll(Matrix3By3 matrix,
YawPitchRollIndicator sequence)
Initializes a
YawPitchRoll sequence from the provided Matrix3By3 and sequence. |
YawPitchRoll(UnitQuaternion quaternion,
YawPitchRollIndicator sequence)
Initializes a
YawPitchRoll sequence from the provided UnitQuaternion and sequence. |