mirror of
https://github.com/wpilibsuite/allwpilib
synced 2026-06-21 01:01:43 +00:00
[wpimath] Make InterpolatingDoubleTreeMap constructor public (#5865)
This commit is contained in:
@@ -9,7 +9,7 @@ package edu.wpi.first.math.interpolation;
|
||||
* from points that are defined. This uses linear interpolation.
|
||||
*/
|
||||
public class InterpolatingDoubleTreeMap extends InterpolatingTreeMap<Double, Double> {
|
||||
InterpolatingDoubleTreeMap() {
|
||||
public InterpolatingDoubleTreeMap() {
|
||||
super(InverseInterpolator.forDouble(), Interpolator.forDouble());
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user