SubZero Common
Common library components for an FRC CommandRobot
Loading...
Searching...
No Matches
SwerveUtils.h
Go to the documentation of this file.
1#pragma once
2
3namespace subzero {
5public:
17 static double StepTowards(double current, double target, double stepsize);
18
32 static double StepTowardsCircular(double current, double target,
33 double stepsize);
34
44 static double AngleDifference(double angleA, double angleB);
45
53 static double WrapAngle(double angle);
54};
55} // namespace subzero
static double StepTowards(double current, double target, double stepsize)
static double AngleDifference(double angleA, double angleB)
static double WrapAngle(double angle)
static double StepTowardsCircular(double current, double target, double stepsize)