mirror of
https://github.com/wpilibsuite/allwpilib
synced 2026-06-21 01:01:43 +00:00
64 lines
1.9 KiB
Java
64 lines
1.9 KiB
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;
|
|
|
|
public final class MathUtil {
|
|
private MathUtil() {
|
|
throw new AssertionError("utility class");
|
|
}
|
|
|
|
/**
|
|
* Returns value clamped between low and high boundaries.
|
|
*
|
|
* @param value Value to clamp.
|
|
* @param low The lower boundary to which to clamp value.
|
|
* @param high The higher boundary to which to clamp value.
|
|
*/
|
|
public static int clamp(int value, int low, int high) {
|
|
return Math.max(low, Math.min(value, high));
|
|
}
|
|
|
|
/**
|
|
* Returns value clamped between low and high boundaries.
|
|
*
|
|
* @param value Value to clamp.
|
|
* @param low The lower boundary to which to clamp value.
|
|
* @param high The higher boundary to which to clamp value.
|
|
*/
|
|
public static double clamp(double value, double low, double high) {
|
|
return Math.max(low, Math.min(value, high));
|
|
}
|
|
|
|
/**
|
|
* Returns modulus of input.
|
|
*
|
|
* @param input Input value to wrap.
|
|
* @param minimumInput The minimum value expected from the input.
|
|
* @param maximumInput The maximum value expected from the input.
|
|
*/
|
|
public static double inputModulus(double input, double minimumInput, double maximumInput) {
|
|
double modulus = maximumInput - minimumInput;
|
|
|
|
// Wrap input if it's above the maximum input
|
|
int numMax = (int) ((input - minimumInput) / modulus);
|
|
input -= numMax * modulus;
|
|
|
|
// Wrap input if it's below the minimum input
|
|
int numMin = (int) ((input - maximumInput) / modulus);
|
|
input -= numMin * modulus;
|
|
|
|
return input;
|
|
}
|
|
|
|
/**
|
|
* Wraps an angle to the range -pi to pi radians.
|
|
*
|
|
* @param angleRadians Angle to wrap in radians.
|
|
*/
|
|
public static double angleModulus(double angleRadians) {
|
|
return inputModulus(angleRadians, -Math.PI, Math.PI);
|
|
}
|
|
}
|