mirror of
https://github.com/wpilibsuite/allwpilib
synced 2026-06-28 02:11:43 +00:00
[wpimath] Make Rotation2d implicitly convert from any angle unit (#6316)
Add unit category concepts to support this.
This commit is contained in:
@@ -28,18 +28,11 @@ class WPILIB_DLLEXPORT Rotation2d {
|
||||
constexpr Rotation2d() = default;
|
||||
|
||||
/**
|
||||
* Constructs a Rotation2d with the given radian value.
|
||||
* Constructs a Rotation2d with the given angle.
|
||||
*
|
||||
* @param value The value of the angle in radians.
|
||||
* @param value The value of the angle.
|
||||
*/
|
||||
constexpr Rotation2d(units::radian_t value); // NOLINT
|
||||
|
||||
/**
|
||||
* Constructs a Rotation2d with the given degree value.
|
||||
*
|
||||
* @param value The value of the angle in degrees.
|
||||
*/
|
||||
constexpr Rotation2d(units::degree_t value); // NOLINT
|
||||
constexpr Rotation2d(units::angle_unit auto value); // NOLINT
|
||||
|
||||
/**
|
||||
* Constructs a Rotation2d with the given x and y (cosine and sine)
|
||||
|
||||
Reference in New Issue
Block a user