From ad97ac743c3dc27ed2b042d535a864648ab301e0 Mon Sep 17 00:00:00 2001 From: Bryce Roethel Date: Fri, 3 Nov 2023 17:55:59 -0400 Subject: [PATCH] [wpimath] Expose InterpolatingDoubleTreeMap constructor --- .../first/math/interpolation/InterpolatingDoubleTreeMap.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wpimath/src/main/java/edu/wpi/first/math/interpolation/InterpolatingDoubleTreeMap.java b/wpimath/src/main/java/edu/wpi/first/math/interpolation/InterpolatingDoubleTreeMap.java index 046de473b3c..bcd57a392e3 100644 --- a/wpimath/src/main/java/edu/wpi/first/math/interpolation/InterpolatingDoubleTreeMap.java +++ b/wpimath/src/main/java/edu/wpi/first/math/interpolation/InterpolatingDoubleTreeMap.java @@ -9,7 +9,7 @@ * from points that are defined. This uses linear interpolation. */ public class InterpolatingDoubleTreeMap extends InterpolatingTreeMap { - InterpolatingDoubleTreeMap() { + public InterpolatingDoubleTreeMap() { super(InverseInterpolator.forDouble(), Interpolator.forDouble()); } }