Package | Description |
---|---|
frc.team670.robot.commands.drive.purePursuit | |
frc.team670.robot.utils.math |
Modifier and Type | Method and Description |
---|---|
Twist |
PoseEstimator.getVelocity() |
Modifier and Type | Method and Description |
---|---|
static Twist |
Kinematics.forwardKinematics(double leftDelta,
double rightDelta,
double rotationDelta) |
Modifier and Type | Method and Description |
---|---|
static RigidTransform |
RigidTransform.exp(Twist twist)
ethaneade.com/lie_groups.pdf
Exponential map for 2D rigid transformation
Basically this converts a
Twist ---(exponential map)---> transformation
Kind of like an differential position ---(integral)---> position |
static RigidTransform |
Kinematics.integrateForwardKinematics(RigidTransform currentPose,
Twist deltaPos)
Forward kinematics:
Starting in the pose (x, y, theta) at time t, determine the pose at time t + delta_t (x', y', theta')
given the robot's left and right wheel velocities.
|