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.units;
006
007/**
008 * Unit of angular dimension.
009 *
010 * <p>This is the base type for units of distance dimension. It is also used to specify the
011 * dimension for {@link Measure}: <code>Measure&lt;Distance&gt;</code>.
012 *
013 * <p>Actual units (such as {@link Units#Meters} and {@link Units#Inches}) can be found in the
014 * {@link Units} class.
015 */
016public class Distance extends Unit<Distance> {
017  /** Creates a new unit with the given name and multiplier to the base unit. */
018  Distance(double baseUnitEquivalent, String name, String symbol) {
019    super(Distance.class, baseUnitEquivalent, name, symbol);
020  }
021
022  Distance(
023      UnaryFunction toBaseConverter, UnaryFunction fromBaseConverter, String name, String symbol) {
024    super(Distance.class, toBaseConverter, fromBaseConverter, name, symbol);
025  }
026}