ewe.sys
Class Math

java.lang.Object
  extended byewe.sys.Math

Deprecated. - use java.lang.Math instead.

public class Math
extends Object


Field Summary
static int ABSOLUTE
          Deprecated.  
static int ACOS
          Deprecated. Arc Cosine trig function.
static int ADD
          Deprecated.  
static int ASIN
          Deprecated. Arc Sine trig function.
static int ATAN
          Deprecated. Arc Tangent trig function.
static int ATAN2
          Deprecated. Arc Tangent2 trig function.
static int BOOLEAN_AND
          Deprecated. A boolean value is 0 = false, not 0 = true;
static int BOOLEAN_EXOR
          Deprecated. A boolean value is 0 = false, not 0 = true;
static int BOOLEAN_NOT
          Deprecated. A boolean value is 0 = false, not 0 = true;
static int BOOLEAN_OR
          Deprecated. A boolean value is 0 = false, not 0 = true;
static int CEIL
          Deprecated. Ceil() function.
static int COS
          Deprecated. Cosine trig function.
static int DIVIDE
          Deprecated.  
static int E
          Deprecated. E constant
static int EQUALS
          Deprecated.  
static int EXP
          Deprecated. Inverse Log (base e)
static int FLOOR
          Deprecated. Floor() function.
static int GREATER
          Deprecated.  
static int GREATER_OF
          Deprecated.  
static int GREATEROREQUAL
          Deprecated.  
static int LESSER
          Deprecated.  
static int LESSER_OF
          Deprecated.  
static int LESSEROREQUAL
          Deprecated.  
static int LOG
          Deprecated. Log (base e)
static int LOG2
          Deprecated. Log of operand1 to base operand2.
static int MULTIPLY
          Deprecated.  
static int NEGATE
          Deprecated.  
static int PI
          Deprecated. PI constant.
static int POWER
          Deprecated. Power raise first operand to power of second.
static int REMAINDER
          Deprecated.  
static int RINT
          Deprecated.  
static int ROUND
          Deprecated.  
static int SET
          Deprecated. The result is the value of the second parameter.
static int SIN
          Deprecated. Sine trig function.
static int SQRT
          Deprecated. Square Root.
static int SUBTRACT
          Deprecated.  
static int TAN
          Deprecated. Tangent trig function.
static int TODEGREES
          Deprecated. Convert radians to degrees.
static int TORADIANS
          Deprecated. Convert degrees to randians trig function.
 
Constructor Summary
Math()
          Deprecated.  
 
Method Summary
static double calculate(int function, double op1)
          Deprecated.  
static double calculate(int function, double op1, double op2)
          Deprecated.  
static double constant(int cons)
          Deprecated.  
static int rand()
          Deprecated.  
static void srand(int seed)
          Deprecated.  
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, toString
 

Field Detail

SIN

public static final int SIN
Deprecated. 
Sine trig function.

See Also:
Constant Field Values

COS

public static final int COS
Deprecated. 
Cosine trig function.

See Also:
Constant Field Values

TAN

public static final int TAN
Deprecated. 
Tangent trig function.

See Also:
Constant Field Values

ASIN

public static final int ASIN
Deprecated. 
Arc Sine trig function.

See Also:
Constant Field Values

ACOS

public static final int ACOS
Deprecated. 
Arc Cosine trig function.

See Also:
Constant Field Values

ATAN

public static final int ATAN
Deprecated. 
Arc Tangent trig function.

See Also:
Constant Field Values

ATAN2

public static final int ATAN2
Deprecated. 
Arc Tangent2 trig function.

See Also:
Constant Field Values

TORADIANS

public static final int TORADIANS
Deprecated. 
Convert degrees to randians trig function.

See Also:
Constant Field Values

TODEGREES

public static final int TODEGREES
Deprecated. 
Convert radians to degrees.

See Also:
Constant Field Values

LOG2

public static final int LOG2
Deprecated. 
Log of operand1 to base operand2.

See Also:
Constant Field Values

LOG

public static final int LOG
Deprecated. 
Log (base e)

See Also:
Constant Field Values

EXP

public static final int EXP
Deprecated. 
Inverse Log (base e)

See Also:
Constant Field Values

POWER

public static final int POWER
Deprecated. 
Power raise first operand to power of second.

See Also:
Constant Field Values

SQRT

public static final int SQRT
Deprecated. 
Square Root.

See Also:
Constant Field Values

CEIL

public static final int CEIL
Deprecated. 
Ceil() function.

See Also:
Constant Field Values

FLOOR

public static final int FLOOR
Deprecated. 
Floor() function.

See Also:
Constant Field Values

MULTIPLY

public static final int MULTIPLY
Deprecated. 
See Also:
Constant Field Values

DIVIDE

public static final int DIVIDE
Deprecated. 
See Also:
Constant Field Values

ADD

public static final int ADD
Deprecated. 
See Also:
Constant Field Values

SUBTRACT

public static final int SUBTRACT
Deprecated. 
See Also:
Constant Field Values

NEGATE

public static final int NEGATE
Deprecated. 
See Also:
Constant Field Values

ABSOLUTE

public static final int ABSOLUTE
Deprecated. 
See Also:
Constant Field Values

REMAINDER

public static final int REMAINDER
Deprecated. 
See Also:
Constant Field Values

GREATER

public static final int GREATER
Deprecated. 
See Also:
Constant Field Values

GREATEROREQUAL

public static final int GREATEROREQUAL
Deprecated. 
See Also:
Constant Field Values

LESSER

public static final int LESSER
Deprecated. 
See Also:
Constant Field Values

LESSEROREQUAL

public static final int LESSEROREQUAL
Deprecated. 
See Also:
Constant Field Values

EQUALS

public static final int EQUALS
Deprecated. 
See Also:
Constant Field Values

BOOLEAN_OR

public static final int BOOLEAN_OR
Deprecated. 
A boolean value is 0 = false, not 0 = true;

See Also:
Constant Field Values

BOOLEAN_AND

public static final int BOOLEAN_AND
Deprecated. 
A boolean value is 0 = false, not 0 = true;

See Also:
Constant Field Values

BOOLEAN_NOT

public static final int BOOLEAN_NOT
Deprecated. 
A boolean value is 0 = false, not 0 = true;

See Also:
Constant Field Values

BOOLEAN_EXOR

public static final int BOOLEAN_EXOR
Deprecated. 
A boolean value is 0 = false, not 0 = true;

See Also:
Constant Field Values

GREATER_OF

public static final int GREATER_OF
Deprecated. 
See Also:
Constant Field Values

LESSER_OF

public static final int LESSER_OF
Deprecated. 
See Also:
Constant Field Values

SET

public static final int SET
Deprecated. 
The result is the value of the second parameter.

See Also:
Constant Field Values

RINT

public static final int RINT
Deprecated. 
See Also:
Constant Field Values

ROUND

public static final int ROUND
Deprecated. 
See Also:
Constant Field Values

PI

public static final int PI
Deprecated. 
PI constant.

See Also:
Constant Field Values

E

public static final int E
Deprecated. 
E constant

See Also:
Constant Field Values
Constructor Detail

Math

public Math()
Deprecated. 
Method Detail

srand

public static void srand(int seed)
Deprecated. 

rand

public static int rand()
Deprecated. 

calculate

public static double calculate(int function,
                               double op1,
                               double op2)
Deprecated. 

calculate

public static double calculate(int function,
                               double op1)
Deprecated. 

constant

public static double constant(int cons)
Deprecated.