001/** 002 * Copyright 2024 The Space Cookies : Girl Scout Troop #62868 and FRC Team #1868 003 * Open Source Software; you may modify and/or share it under the terms of 004 * the 3-Clause BSD License found in the root directory of this project. 005 */ 006 007package tagalong.measurements; 008 009/** 010 * Linear unit interface 011 */ 012public interface Height { 013 /** 014 * Gets tagalong height in meters 015 * 016 * @return Height in meters 017 */ 018 public double getHeightM(); 019}