[wpimath] Make ExponentialProfile.State mutable (#6138)

It was already mutable in the C++ ExponentialProfile and
TrapezoidProfile in both languages.
This commit is contained in:
Tyler Veness
2024-01-02 11:39:55 -08:00
committed by GitHub
parent 783acb9b72
commit c486972c55

View File

@@ -113,9 +113,11 @@ public class ExponentialProfile {
}
public static class State {
public final double position;
public double position;
public final double velocity;
public double velocity;
public State() {}
/**
* Construct a state within an exponential profile.