WPILibC++ 2023.4.3-108-ge5452e3
|
A rotation in a 3D coordinate frame represented by a quaternion. More...
#include <frc/geometry/Rotation3d.h>
Public Member Functions | |
Rotation3d ()=default | |
Constructs a Rotation3d with a default angle of 0 degrees. More... | |
Rotation3d (const Quaternion &q) | |
Constructs a Rotation3d from a quaternion. More... | |
Rotation3d (units::radian_t roll, units::radian_t pitch, units::radian_t yaw) | |
Constructs a Rotation3d from extrinsic roll, pitch, and yaw. More... | |
Rotation3d (const Vectord< 3 > &axis, units::radian_t angle) | |
Constructs a Rotation3d with the given axis-angle representation. More... | |
Rotation3d (const Eigen::Vector3d &rvec) | |
Constructs a Rotation3d with the given rotation vector representation. More... | |
Rotation3d (const Eigen::Matrix3d &rotationMatrix) | |
Constructs a Rotation3d from a rotation matrix. More... | |
Rotation3d (const Vectord< 3 > &initial, const Vectord< 3 > &final) | |
Constructs a Rotation3d that rotates the initial vector onto the final vector. More... | |
Rotation3d | operator+ (const Rotation3d &other) const |
Adds two rotations together. More... | |
Rotation3d | operator- (const Rotation3d &other) const |
Subtracts the new rotation from the current rotation and returns the new rotation. More... | |
Rotation3d | operator- () const |
Takes the inverse of the current rotation. More... | |
Rotation3d | operator* (double scalar) const |
Multiplies the current rotation by a scalar. More... | |
Rotation3d | operator/ (double scalar) const |
Divides the current rotation by a scalar. More... | |
bool | operator== (const Rotation3d &) const =default |
Checks equality between this Rotation3d and another object. More... | |
Rotation3d | RotateBy (const Rotation3d &other) const |
Adds the new rotation to the current rotation. More... | |
const Quaternion & | GetQuaternion () const |
Returns the quaternion representation of the Rotation3d. More... | |
units::radian_t | X () const |
Returns the counterclockwise rotation angle around the X axis (roll). More... | |
units::radian_t | Y () const |
Returns the counterclockwise rotation angle around the Y axis (pitch). More... | |
units::radian_t | Z () const |
Returns the counterclockwise rotation angle around the Z axis (yaw). More... | |
Vectord< 3 > | Axis () const |
Returns the axis in the axis-angle representation of this rotation. More... | |
units::radian_t | Angle () const |
Returns the angle in the axis-angle representation of this rotation. More... | |
Rotation2d | ToRotation2d () const |
Returns a Rotation2d representing this Rotation3d projected into the X-Y plane. More... | |
A rotation in a 3D coordinate frame represented by a quaternion.
|
default |
Constructs a Rotation3d with a default angle of 0 degrees.
|
explicit |
Constructs a Rotation3d from a quaternion.
q | The quaternion. |
frc::Rotation3d::Rotation3d | ( | units::radian_t | roll, |
units::radian_t | pitch, | ||
units::radian_t | yaw | ||
) |
Constructs a Rotation3d from extrinsic roll, pitch, and yaw.
Extrinsic rotations occur in that order around the axes in the fixed global frame rather than the body frame.
Angles are measured counterclockwise with the rotation axis pointing "out of the page". If you point your right thumb along the positive axis direction, your fingers curl in the direction of positive rotation.
roll | The counterclockwise rotation angle around the X axis (roll). |
pitch | The counterclockwise rotation angle around the Y axis (pitch). |
yaw | The counterclockwise rotation angle around the Z axis (yaw). |
frc::Rotation3d::Rotation3d | ( | const Vectord< 3 > & | axis, |
units::radian_t | angle | ||
) |
Constructs a Rotation3d with the given axis-angle representation.
The axis doesn't have to be normalized.
axis | The rotation axis. |
angle | The rotation around the axis. |
|
explicit |
Constructs a Rotation3d with the given rotation vector representation.
This representation is equivalent to axis-angle, where the normalized axis is multiplied by the rotation around the axis in radians.
rvec | The rotation vector. |
|
explicit |
Constructs a Rotation3d from a rotation matrix.
rotationMatrix | The rotation matrix. |
std::domain_error | if the rotation matrix isn't special orthogonal. |
Constructs a Rotation3d that rotates the initial vector onto the final vector.
This is useful for turning a 3D vector (final) into an orientation relative to a coordinate system vector (initial).
initial | The initial vector. |
final | The final vector. |
units::radian_t frc::Rotation3d::Angle | ( | ) | const |
Returns the angle in the axis-angle representation of this rotation.
Vectord< 3 > frc::Rotation3d::Axis | ( | ) | const |
Returns the axis in the axis-angle representation of this rotation.
const Quaternion & frc::Rotation3d::GetQuaternion | ( | ) | const |
Returns the quaternion representation of the Rotation3d.
Rotation3d frc::Rotation3d::operator* | ( | double | scalar | ) | const |
Multiplies the current rotation by a scalar.
scalar | The scalar. |
Rotation3d frc::Rotation3d::operator+ | ( | const Rotation3d & | other | ) | const |
Adds two rotations together.
other | The rotation to add. |
Rotation3d frc::Rotation3d::operator- | ( | ) | const |
Takes the inverse of the current rotation.
Rotation3d frc::Rotation3d::operator- | ( | const Rotation3d & | other | ) | const |
Subtracts the new rotation from the current rotation and returns the new rotation.
other | The rotation to subtract. |
Rotation3d frc::Rotation3d::operator/ | ( | double | scalar | ) | const |
Divides the current rotation by a scalar.
scalar | The scalar. |
|
default |
Checks equality between this Rotation3d and another object.
Rotation3d frc::Rotation3d::RotateBy | ( | const Rotation3d & | other | ) | const |
Adds the new rotation to the current rotation.
other | The rotation to rotate by. |
Rotation2d frc::Rotation3d::ToRotation2d | ( | ) | const |
Returns a Rotation2d representing this Rotation3d projected into the X-Y plane.
units::radian_t frc::Rotation3d::X | ( | ) | const |
Returns the counterclockwise rotation angle around the X axis (roll).
units::radian_t frc::Rotation3d::Y | ( | ) | const |
Returns the counterclockwise rotation angle around the Y axis (pitch).
units::radian_t frc::Rotation3d::Z | ( | ) | const |
Returns the counterclockwise rotation angle around the Z axis (yaw).