Class TrigonometricFunctionFeatures

  • All Implemented Interfaces:
    java.io.Serializable

    public class TrigonometricFunctionFeatures
    extends java.lang.Object
    implements java.io.Serializable
    Trigonometric functions
    See Also:
    Serialized Form
    • Field Detail

      • TYPE_NAME

        public static final Name TYPE_NAME
      • FIELD_NAME_ACOS

        public static final Name FIELD_NAME_ACOS
      • FIELD_NAME_ASIN

        public static final Name FIELD_NAME_ASIN
      • FIELD_NAME_ATAN

        public static final Name FIELD_NAME_ATAN
      • FIELD_NAME_ATAN2

        public static final Name FIELD_NAME_ATAN2
      • FIELD_NAME_COS

        public static final Name FIELD_NAME_COS
      • FIELD_NAME_COT

        public static final Name FIELD_NAME_COT
      • FIELD_NAME_DEGREES

        public static final Name FIELD_NAME_DEGREES
      • FIELD_NAME_HAVERSIN

        public static final Name FIELD_NAME_HAVERSIN
      • FIELD_NAME_PI

        public static final Name FIELD_NAME_PI
      • FIELD_NAME_RADIANS

        public static final Name FIELD_NAME_RADIANS
      • FIELD_NAME_SIN

        public static final Name FIELD_NAME_SIN
      • FIELD_NAME_TAN

        public static final Name FIELD_NAME_TAN
      • acos

        public final java.lang.Boolean acos
        The acos() function. Returns the arccosine of a FLOAT in radians.
      • asin

        public final java.lang.Boolean asin
        The asin() function. Returns the arcsine of a FLOAT in radians.
      • atan

        public final java.lang.Boolean atan
        The atan() function. Returns the arctangent of a FLOAT in radians.
      • atan2

        public final java.lang.Boolean atan2
        The atan2() function. Returns the arctangent2 of a set of coordinates in radians.
      • cos

        public final java.lang.Boolean cos
        The cos() function. Returns the cosine of a FLOAT.
      • cot

        public final java.lang.Boolean cot
        The cot() function. Returns the cotangent of a FLOAT.
      • degrees

        public final java.lang.Boolean degrees
        The degrees() function. Converts radians to degrees.
      • haversin

        public final java.lang.Boolean haversin
        The haversin() function. Returns half the versine of a number.
      • pi

        public final java.lang.Boolean pi
        The pi() function. Returns the mathematical constant pi.
      • radians

        public final java.lang.Boolean radians
        The radians() function. Converts degrees to radians.
      • sin

        public final java.lang.Boolean sin
        The sin() function. Returns the sine of a FLOAT.
      • tan

        public final java.lang.Boolean tan
        The tan() function. Returns the tangent of a FLOAT.
    • Constructor Detail

      • TrigonometricFunctionFeatures

        public TrigonometricFunctionFeatures​(java.lang.Boolean acos,
                                             java.lang.Boolean asin,
                                             java.lang.Boolean atan,
                                             java.lang.Boolean atan2,
                                             java.lang.Boolean cos,
                                             java.lang.Boolean cot,
                                             java.lang.Boolean degrees,
                                             java.lang.Boolean haversin,
                                             java.lang.Boolean pi,
                                             java.lang.Boolean radians,
                                             java.lang.Boolean sin,
                                             java.lang.Boolean tan)