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 * Rotational unit interface 011 */ 012public interface Angle { 013 /** 014 * 015 * @return Angle in degrees 016 */ 017 public double getDegrees(); 018 019 /** 020 * 021 * @return Angle in radians 022 */ 023 public double getRadians(); 024 025 /** 026 * 027 * @return Angle in rotations 028 */ 029 public double getRotations(); 030}