Uses of Class
net.grelf.Angle

Packages that use Angle
net.grelf This package contains general-purpose Java classes: non-astronomical and not specific to GRIP. 
net.grelf.astro This package contains Java classes for astronomical applications. 
 

Uses of Angle in net.grelf
 

Methods in net.grelf that return Angle
static Angle Angle.acos(double cos)
          Inverse cosine.
 Angle Angle.add(Angle other)
          Returns new Angle which is the sum of the present one and other.
 Angle Complex.arg()
          Returns polar angle.
static Angle Angle.asin(double sin)
          Inverse sine.
static Angle Angle.atan(double tan)
          Inverse tangent.
static Angle Angle.atan2(double y, double x)
          Inverse tangent.
 Angle Angle.clone()
          Returns a new Angle with th same fields.
 Angle Angle.difference(Angle other)
          Similar to subtract but the result is in the range -180..180 degrees.
 Angle Angle.in360()
          Returns a new Angle whose value lies in range 0..360 degrees (or 0..2pi radians).
 Angle Angle.multiply(double factor)
          Returns a new Angle that is the result of multiplying the current one by a factor.
static Angle Angle.parseAngle(java.lang.String s)
          Allow all possible formatting of the String.
 Angle Angle.subtract(Angle other)
          Returns a new Angle which is the result of subtracting other from this.
 

Methods in net.grelf with parameters of type Angle
 Angle Angle.add(Angle other)
          Returns new Angle which is the sum of the present one and other.
static Maths.Statistics Angle.angleStatistics(Angle... angles)
          Calculate the min, max, mean and stdDev (all in degrees) of an array of angles, taking into account periodicity.
 int Angle.compareTo(Angle other)
          Implements java.lang.Comparable
 Angle Angle.difference(Angle other)
          Similar to subtract but the result is in the range -180..180 degrees.
static Complex Complex.expi(Angle theta)
          Get exp (i.theta) = cos (theta) + i.sin (theta).
 Angle Angle.subtract(Angle other)
          Returns a new Angle which is the result of subtracting other from this.
 

Method parameters in net.grelf with type arguments of type Angle
static Maths.Statistics Angle.angleStatistics(java.util.Collection<Angle> angles)
          Calculate the min, max, mean and stdDev (all in degrees) of a set or list of angles, taking into account periodicity.
 

Uses of Angle in net.grelf.astro
 

Subclasses of Angle in net.grelf.astro
 class Dec
          Representation of declination (celestial latitude).
 class RA
          Representation of Right Ascension (celestial longitude).
 

Methods in net.grelf.astro that return Angle
 Angle SkyVector.getPa()
          Get position angle (anticlockwise from north).
 Angle SkyVector.getSeparation()
          Get spherical separation.
 

Methods in net.grelf.astro with parameters of type Angle
 double[] SkyPoint.calculateRiseTransitSet(JulianDate jd, BodyKind kind, Angle latitude)
          Returns an array of 3 fractions of a day, representing respectively the local times of rising, transit and setting for the given latitude and refraction offset (h0 = -0.5667 for stars and planets, -0.8333 for the Sun, +0.125 for the Moon).
 

Constructors in net.grelf.astro with parameters of type Angle
Dec(Angle angle)
           
RA(Angle angle)
           
SkyVector(Angle separation, Angle pa)
          The order of the parameters is like polar coordinates (r, theta).