[wpilibc] Remove deprecated Joystick angle functions (#6569)

This commit is contained in:
Isaac Turner
2024-05-04 03:38:58 +08:00
committed by GitHub
parent 0afc35f336
commit 9c7120e6bf
2 changed files with 0 additions and 30 deletions

View File

@@ -251,26 +251,6 @@ class Joystick : public GenericHID {
*/
double GetMagnitude() const;
/**
* Get the direction of the vector formed by the joystick and its origin
* in radians.
*
* @return The direction of the vector in radians
* @deprecated Use GetDirection() instead.
*/
[[deprecated("Use GetDirection() instead.")]]
double GetDirectionRadians() const;
/**
* Get the direction of the vector formed by the joystick and its origin
* in degrees.
*
* @return The direction of the vector in degrees
* @deprecated Use GetDirection() instead.
*/
[[deprecated("Use GetDirection() instead.")]]
double GetDirectionDegrees() const;
/**
* Get the direction of the vector formed by the joystick and its origin.
*