001/**
002 * Unit-API - Units of Measurement API for Java
003 * Copyright (c) 2014 Jean-Marie Dautelle, Werner Keil, V2COM
004 * All rights reserved.
005 *
006 * See LICENSE.txt for details.
007 */
008package javax.measure.quantity;
009
010import javax.measure.Quantity;
011
012
013/**
014 * Figure formed by two lines diverging from a common point.
015 * The metric system unit for this quantity is "rad" (radian).
016 *
017 * @author <a href="mailto:[email protected]">Jean-Marie Dautelle</a>
018 * @version 1.0
019 *
020 * @see SolidAngle
021 * @see Length
022 * @see AngularSpeed
023 */
024public interface Angle extends Quantity<Angle> {
025}