001// Copyright (c) FIRST and other WPILib contributors.
002// Open Source Software; you can modify and/or share it under the terms of
003// the WPILib BSD license file in the root directory of this project.
004
005package edu.wpi.first.math.interpolation;
006
007/**
008 * Interpolating Tree Maps are used to get values at points that are not defined by making a guess
009 * from points that are defined. This uses linear interpolation.
010 */
011public class InterpolatingDoubleTreeMap extends InterpolatingTreeMap<Double, Double> {
012  /** Default constructor. */
013  public InterpolatingDoubleTreeMap() {
014    super(InverseInterpolator.forDouble(), Interpolator.forDouble());
015  }
016}