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
|
|
|
|
2024-01-04 08:38:06 -08:00
|
|
|
/** WPIMath usage reporting IDs. */
|
2020-08-06 23:57:39 -07:00
|
|
|
public enum MathUsageId {
|
2024-01-04 08:38:06 -08:00
|
|
|
/** DifferentialDriveKinematics. */
|
2020-08-06 23:57:39 -07:00
|
|
|
kKinematics_DifferentialDrive,
|
2024-01-04 08:38:06 -08:00
|
|
|
|
|
|
|
|
/** MecanumDriveKinematics. */
|
2020-08-06 23:57:39 -07:00
|
|
|
kKinematics_MecanumDrive,
|
2024-01-04 08:38:06 -08:00
|
|
|
|
|
|
|
|
/** SwerveDriveKinematics. */
|
2020-08-06 23:57:39 -07:00
|
|
|
kKinematics_SwerveDrive,
|
2024-01-04 08:38:06 -08:00
|
|
|
|
|
|
|
|
/** TrapezoidProfile. */
|
2020-08-06 23:57:39 -07:00
|
|
|
kTrajectory_TrapezoidProfile,
|
2024-01-04 08:38:06 -08:00
|
|
|
|
|
|
|
|
/** LinearFilter. */
|
2020-08-06 23:57:39 -07:00
|
|
|
kFilter_Linear,
|
2024-01-04 08:38:06 -08:00
|
|
|
|
|
|
|
|
/** DifferentialDriveOdometry. */
|
2020-08-06 23:57:39 -07:00
|
|
|
kOdometry_DifferentialDrive,
|
2024-01-04 08:38:06 -08:00
|
|
|
|
|
|
|
|
/** SwerveDriveOdometry. */
|
2020-08-06 23:57:39 -07:00
|
|
|
kOdometry_SwerveDrive,
|
2024-01-04 08:38:06 -08:00
|
|
|
|
|
|
|
|
/** MecanumDriveOdometry. */
|
2021-06-16 17:45:51 +03:00
|
|
|
kOdometry_MecanumDrive,
|
2024-01-04 08:38:06 -08:00
|
|
|
|
|
|
|
|
/** PIDController. */
|
2021-06-16 17:45:51 +03:00
|
|
|
kController_PIDController2,
|
2024-01-04 08:38:06 -08:00
|
|
|
|
|
|
|
|
/** ProfiledPIDController. */
|
2021-06-16 17:45:51 +03:00
|
|
|
kController_ProfiledPIDController,
|
2020-07-24 08:34:30 -07:00
|
|
|
}
|