Modifier and Type | Field and Description |
---|---|
static Function |
ABS
Provides access to
Math.abs(double) |
static Function |
ACOS
Provides access to
Math.acos(double) |
static Function |
ASIN
Provides access to
Math.asin(double) |
static Function |
ATAN
Provides access to
Math.atan(double) |
static Function |
ATAN2
Provides access to
Math.atan2(double, double) |
static Function |
CEIL
Provides access to
Math.ceil(double) |
static Function |
COS
Provides access to
Math.cos(double) |
static Function |
COSH
Provides access to
Math.cosh(double) |
static Function |
DEG
Provides access to
Math.toDegrees(double) |
static Function |
EXP
Provides access to
Math.exp(double) |
static Function |
FLOOR
Provides access to
Math.floor(double) |
static Function |
IF
Provides an if-like function
It expects three arguments: A condition, an expression being evaluated if the condition is non zero and an
expression which is being evaluated if the condition is zero.
|
static Function |
LN
Provides access to
Math.log(double) |
static Function |
LOG
Provides access to
Math.log10(double) |
static Function |
MAX
Provides access to
Math.max(double, double) |
static Function |
MIN
Provides access to
Math.min(double, double) |
static Function |
POW
Provides access to
Math.pow(double, double) |
static Function |
RAD
Provides access to
Math.toRadians(double) |
static Function |
RND
Provides access to
Math.random() which will be multiplied by the given argument. |
static Function |
ROUND
Provides access to
Math.round(double) |
static Function |
SIGN
Provides access to
Math.signum(double) |
static Function |
SIN
Provides access to
Math.sin(double) |
static Function |
SINH
Provides access to
Math.sinh(double) |
static Function |
SQRT
Provides access to
Math.sqrt(double) |
static Function |
TAN
Provides access to
Math.tan(double) |
static Function |
TANH
Provides access to
Math.tanh(double) |
public static final Function SIN
Math.sin(double)
public static final Function SINH
Math.sinh(double)
public static final Function COS
Math.cos(double)
public static final Function COSH
Math.cosh(double)
public static final Function TAN
Math.tan(double)
public static final Function TANH
Math.tanh(double)
public static final Function ABS
Math.abs(double)
public static final Function ASIN
Math.asin(double)
public static final Function ACOS
Math.acos(double)
public static final Function ATAN
Math.atan(double)
public static final Function ATAN2
Math.atan2(double, double)
public static final Function ROUND
Math.round(double)
public static final Function FLOOR
Math.floor(double)
public static final Function CEIL
Math.ceil(double)
public static final Function POW
Math.pow(double, double)
public static final Function SQRT
Math.sqrt(double)
public static final Function EXP
Math.exp(double)
public static final Function LN
Math.log(double)
public static final Function LOG
Math.log10(double)
public static final Function MIN
Math.min(double, double)
public static final Function MAX
Math.max(double, double)
public static final Function RND
Math.random()
which will be multiplied by the given argument.public static final Function SIGN
Math.signum(double)
public static final Function DEG
Math.toDegrees(double)
public static final Function RAD
Math.toRadians(double)
public static final Function IF
It expects three arguments: A condition, an expression being evaluated if the condition is non zero and an expression which is being evaluated if the condition is zero.
Copyright © 2018. All rights reserved.