2020-12-26 14:12:05 -08:00
|
|
|
// Copyright (c) FIRST and other WPILib contributors.
|
|
|
|
|
// Open Source Software; you can modify and/or share it under the terms of
|
|
|
|
|
// the WPILib BSD license file in the root directory of this project.
|
2020-07-24 08:34:30 -07:00
|
|
|
|
2020-08-06 23:57:39 -07:00
|
|
|
package edu.wpi.first.math;
|
2020-07-24 08:34:30 -07:00
|
|
|
|
2020-08-06 23:57:39 -07:00
|
|
|
public enum MathUsageId {
|
|
|
|
|
kKinematics_DifferentialDrive,
|
|
|
|
|
kKinematics_MecanumDrive,
|
|
|
|
|
kKinematics_SwerveDrive,
|
|
|
|
|
kTrajectory_TrapezoidProfile,
|
|
|
|
|
kFilter_Linear,
|
|
|
|
|
kOdometry_DifferentialDrive,
|
|
|
|
|
kOdometry_SwerveDrive,
|
|
|
|
|
kOdometry_MecanumDrive
|
2020-07-24 08:34:30 -07:00
|
|
|
}
|