51 Rotation3d(units::radian_t roll, units::radian_t pitch, units::radian_t yaw);
77 explicit Rotation3d(
const Eigen::Matrix3d& rotationMatrix);
157 units::radian_t
X()
const;
162 units::radian_t
Y()
const;
167 units::radian_t
Z()
const;
#define WPILIB_DLLEXPORT
Definition: SymbolExports.h:36
Definition: Quaternion.h:17
A rotation in a 2D coordinate frame represented by a point on the unit circle (cosine and sine).
Definition: Rotation2d.h:26
A rotation in a 3D coordinate frame represented by a quaternion.
Definition: Rotation3d.h:23
Rotation2d ToRotation2d() const
Returns a Rotation2d representing this Rotation3d projected into the X-Y plane.
Rotation3d operator-() const
Takes the inverse of the current rotation.
Rotation3d(units::radian_t roll, units::radian_t pitch, units::radian_t yaw)
Constructs a Rotation3d from extrinsic roll, pitch, and yaw.
Rotation3d operator+(const Rotation3d &other) const
Adds two rotations together.
Rotation3d operator-(const Rotation3d &other) const
Subtracts the new rotation from the current rotation and returns the new rotation.
units::radian_t Y() const
Returns the counterclockwise rotation angle around the Y axis (pitch).
Rotation3d(const Eigen::Vector3d &rvec)
Constructs a Rotation3d with the given rotation vector representation.
Rotation3d operator/(double scalar) const
Divides the current rotation by a scalar.
units::radian_t X() const
Returns the counterclockwise rotation angle around the X axis (roll).
units::radian_t Z() const
Returns the counterclockwise rotation angle around the Z axis (yaw).
Rotation3d(const Eigen::Matrix3d &rotationMatrix)
Constructs a Rotation3d from a rotation matrix.
units::radian_t Angle() const
Returns the angle in the axis-angle representation of this rotation.
Rotation3d(const Vectord< 3 > &axis, units::radian_t angle)
Constructs a Rotation3d with the given axis-angle representation.
Rotation3d RotateBy(const Rotation3d &other) const
Adds the new rotation to the current rotation.
Rotation3d operator*(double scalar) const
Multiplies the current rotation by a scalar.
Vectord< 3 > Axis() const
Returns the axis in the axis-angle representation of this rotation.
Rotation3d(const Quaternion &q)
Constructs a Rotation3d from a quaternion.
const Quaternion & GetQuaternion() const
Returns the quaternion representation of the Rotation3d.
Rotation3d(const Vectord< 3 > &initial, const Vectord< 3 > &final)
Constructs a Rotation3d that rotates the initial vector onto the final vector.
Rotation3d()=default
Constructs a Rotation3d with a default angle of 0 degrees.
bool operator==(const Rotation3d &) const =default
Checks equality between this Rotation3d and another object.
a class to store JSON values
Definition: json.h:2655
Definition: AprilTagPoseEstimator.h:15
Eigen::Vector< double, Size > Vectord
Definition: EigenCore.h:12
WPILIB_DLLEXPORT void from_json(const wpi::json &json, AprilTagFieldLayout &layout)
WPILIB_DLLEXPORT void to_json(wpi::json &json, const AprilTagFieldLayout &layout)
unit< std::ratio< 1 >, units::category::scalar_unit > scalar
Definition: base.h:2521
Definition: AprilTagFieldLayout.h:18