mirror of
https://github.com/wpilibsuite/allwpilib
synced 2026-06-19 00:41:43 +00:00
42 lines
959 B
Java
42 lines
959 B
Java
// 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.
|
|
|
|
package edu.wpi.first.math;
|
|
|
|
/** WPIMath usage reporting IDs. */
|
|
public enum MathUsageId {
|
|
/** DifferentialDriveKinematics. */
|
|
kKinematics_DifferentialDrive,
|
|
|
|
/** MecanumDriveKinematics. */
|
|
kKinematics_MecanumDrive,
|
|
|
|
/** SwerveDriveKinematics. */
|
|
kKinematics_SwerveDrive,
|
|
|
|
/** TrapezoidProfile. */
|
|
kTrajectory_TrapezoidProfile,
|
|
|
|
/** LinearFilter. */
|
|
kFilter_Linear,
|
|
|
|
/** DifferentialDriveOdometry. */
|
|
kOdometry_DifferentialDrive,
|
|
|
|
/** SwerveDriveOdometry. */
|
|
kOdometry_SwerveDrive,
|
|
|
|
/** MecanumDriveOdometry. */
|
|
kOdometry_MecanumDrive,
|
|
|
|
/** PIDController. */
|
|
kController_PIDController2,
|
|
|
|
/** ProfiledPIDController. */
|
|
kController_ProfiledPIDController,
|
|
|
|
/** BangBangController. */
|
|
kController_BangBangController,
|
|
}
|