Uses of Class
craterdog.primitives.Angle

  • Uses of Angle in craterdog.primitives

    Fields in craterdog.primitives declared as Angle
    Modifier and Type
    Field
    Description
    static Angle
    Angle.PI
    This constant approximates the value of pi.
    Methods in craterdog.primitives that return Angle
    Modifier and Type
    Method
    Description
    static Angle
    Angle.arccosine​(double ratio)
    This function returns the angle whose cosine is the specified ratio.
    static Angle
    Angle.arcsine​(double ratio)
    This function returns the angle whose sine is the specified ratio.
    static Angle
    Angle.arctangent​(double ratio)
    This function returns the angle whose tangent is the specified ratio.
    static Angle
    Angle.arctangent​(double y, double x)
    This function returns the angle whose tangent is the ratio of the specified values.
    static Angle
    Angle.difference​(Angle angle1, Angle angle2)
    This function returns the normalized difference of two angles.
    static Angle
    Angle.inverse​(Angle angle)
    This function returns the normalized inversion of the specified angle.
    static Angle
    Angle.negative​(Angle angle)
    This function returns the normalized negation of the specified angle.
    static Angle
    Angle.product​(Angle angle, double multiplier)
    This function returns the normalized product of an angle and a scalar value.
    static Angle
    Angle.quotient​(Angle angle, double divisor)
    This function returns the normalized quotient of an angle and a scalar value.
    static Angle
    Angle.sum​(Angle angle1, Angle angle2)
    This function returns the normalized sum of two angles.
    Methods in craterdog.primitives with parameters of type Angle
    Modifier and Type
    Method
    Description
    int
    Angle.compareTo​(Angle angle)
     
    static double
    Angle.cosine​(Angle angle)
    This function returns the cosine of the specified angle.
    static Angle
    Angle.difference​(Angle angle1, Angle angle2)
    This function returns the normalized difference of two angles.
    static Angle
    Angle.inverse​(Angle angle)
    This function returns the normalized inversion of the specified angle.
    static Angle
    Angle.negative​(Angle angle)
    This function returns the normalized negation of the specified angle.
    static Angle
    Angle.product​(Angle angle, double multiplier)
    This function returns the normalized product of an angle and a scalar value.
    static Angle
    Angle.quotient​(Angle angle, double divisor)
    This function returns the normalized quotient of an angle and a scalar value.
    static double
    Angle.sine​(Angle angle)
    This function returns the sine of the specified angle.
    static Angle
    Angle.sum​(Angle angle1, Angle angle2)
    This function returns the normalized sum of two angles.
    static double
    Angle.tangent​(Angle angle)
    This function returns the tangent of the specified angle.