Interface Math
Hierarchy
- Math
Index
Properties
E
The mathematical constant e. This is Euler's number, the base of natural logarithms.
LN10
The natural logarithm of 10.
LN2
The natural logarithm of 2.
LOG10E
The base-10 logarithm of e.
LOG2E
The base-2 logarithm of e.
PI
Pi. This is the ratio of the circumference of a circle to its diameter.
SQRT1_2
The square root of 0.5, or, equivalently, one divided by the square root of 2.
SQRT2
The square root of 2.
Methods
abs
-
Returns the absolute value of a number (the value without regard to whether it is positive or negative). For example, the absolute value of -5 is the same as the absolute value of 5.
Parameters
-
x: number
A numeric expression for which the absolute value is needed.
Returns number
-
acos
-
Returns the arc cosine (or inverse cosine) of a number.
Parameters
-
x: number
A numeric expression.
Returns number
-
asin
-
Returns the arcsine of a number.
Parameters
-
x: number
A numeric expression.
Returns number
-
atan
-
Returns the arctangent of a number.
Parameters
-
x: number
A numeric expression for which the arctangent is needed.
Returns number
-
atan2
-
Returns the angle (in radians) from the X axis to a point.
Parameters
-
y: number
A numeric expression representing the cartesian y-coordinate.
-
x: number
A numeric expression representing the cartesian x-coordinate.
Returns number
-
ceil
-
Returns the smallest integer greater than or equal to its numeric argument.
Parameters
-
x: number
A numeric expression.
Returns number
-
cos
-
Returns the cosine of a number.
Parameters
-
x: number
A numeric expression that contains an angle measured in radians.
Returns number
-
exp
-
Returns e (the base of natural logarithms) raised to a power.
Parameters
-
x: number
A numeric expression representing the power of e.
Returns number
-
floor
-
Returns the greatest integer less than or equal to its numeric argument.
Parameters
-
x: number
A numeric expression.
Returns number
-
log
-
Returns the natural logarithm (base e) of a number.
Parameters
-
x: number
A numeric expression.
Returns number
-
max
-
Returns the larger of a set of supplied numeric expressions.
Parameters
-
Rest ...values: number[]
Numeric expressions to be evaluated.
Returns number
-
min
-
Returns the smaller of a set of supplied numeric expressions.
Parameters
-
Rest ...values: number[]
Numeric expressions to be evaluated.
Returns number
-
pow
-
Returns the value of a base expression taken to a specified power.
Parameters
-
x: number
The base value of the expression.
-
y: number
The exponent value of the expression.
Returns number
-
random
-
Returns a pseudorandom number between 0 and 1.
Returns number
round
-
Returns a supplied numeric expression rounded to the nearest number.
Parameters
-
x: number
The value to be rounded to the nearest number.
Returns number
-
sin
-
Returns the sine of a number.
Parameters
-
x: number
A numeric expression that contains an angle measured in radians.
Returns number
-
sqrt
-
Returns the square root of a number.
Parameters
-
x: number
A numeric expression.
Returns number
-
tan
-
Returns the tangent of a number.
Parameters
-
x: number
A numeric expression that contains an angle measured in radians.
Returns number
-
Generated using TypeDoc
An intrinsic object that provides basic mathematics functionality and constants.