WPILib Kinematics
package com.seattlesolvers.solverslib.kinematics.wpilibkinematics
What are Kinematics?
What is Odometry?
The ChassisSpeeds Class
ChassisSpeeds ClassConstructing a ChassisSpeeds Object
// The robot is moving at 3 meters per second forward, 2 meters
// per second to the right, and rotating at half a rotation per
// second counterclockwise.
ChassisSpeeds speeds = new ChassisSpeeds(3.0, -2.0, Math.PI);