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
005// THIS FILE WAS AUTO-GENERATED BY ./wpiunits/generate_units.py. DO NOT MODIFY
006
007package edu.wpi.first.units.measure;
008
009import static edu.wpi.first.units.Units.*;
010import edu.wpi.first.units.*;
011import edu.wpi.first.units.mutable.MutableMeasureBase;
012
013@SuppressWarnings({"unchecked", "cast", "checkstyle", "PMD"})
014public final class MutVelocity<D extends Unit>
015  extends MutableMeasureBase<VelocityUnit<D>, Velocity<D>, MutVelocity<D>>
016  implements Velocity<D> {
017  public MutVelocity(double magnitude, double baseUnitMagnitude, VelocityUnit<D> unit) {
018    super(magnitude, baseUnitMagnitude, unit);
019  }
020
021  @Override
022  public Velocity<D> copy() {
023    return new ImmutableVelocity<D>(magnitude(), baseUnitMagnitude(), unit());
024  }
025}