Exemplo n.º 1
0
def acosh(input):
    return _arithm_op("acosh", input)
Exemplo n.º 2
0
def log10(input):
    return _arithm_op("log10", input)
Exemplo n.º 3
0
def atan(input):
    return _arithm_op("atan", input)
Exemplo n.º 4
0
def cosh(input):
    return _arithm_op("cosh", input)
Exemplo n.º 5
0
def cos(input):
    return _arithm_op("cos", input)
Exemplo n.º 6
0
def asin(input):
    return _arithm_op("asin", input)
Exemplo n.º 7
0
def clamp(value, lo, hi):
    return _arithm_op("clamp", value, lo, hi)
Exemplo n.º 8
0
def ceil(input):
    return _arithm_op("ceil", input)
Exemplo n.º 9
0
def fpow(base, exponent):
    return _arithm_op("fpow", base, exponent)
Exemplo n.º 10
0
def atan2(x, y):
    return _arithm_op("atan2", x, y)
Exemplo n.º 11
0
def max(left, right):
    return _arithm_op("max", left, right)
Exemplo n.º 12
0
def min(left, right):
    return _arithm_op("min", left, right)
Exemplo n.º 13
0
def atanh(input):
    return _arithm_op("atanh", input)
Exemplo n.º 14
0
def fabs(input):
    return _arithm_op("fabs", input)
Exemplo n.º 15
0
def sqrt(input):
    return _arithm_op("sqrt", input)
Exemplo n.º 16
0
def floor(input):
    return _arithm_op("floor", input)
Exemplo n.º 17
0
def rsqrt(input):
    return _arithm_op("rsqrt", input)
Exemplo n.º 18
0
def sin(input):
    return _arithm_op("sin", input)
Exemplo n.º 19
0
def cbrt(input):
    return _arithm_op("cbrt", input)
Exemplo n.º 20
0
def tan(input):
    return _arithm_op("tan", input)
Exemplo n.º 21
0
def exp(input):
    return _arithm_op("exp", input)
Exemplo n.º 22
0
def acos(input):
    return _arithm_op("acos", input)
Exemplo n.º 23
0
def log(input):
    return _arithm_op("log", input)
Exemplo n.º 24
0
def sinh(input):
    return _arithm_op("sinh", input)
Exemplo n.º 25
0
def log2(input):
    return _arithm_op("log2", input)
Exemplo n.º 26
0
def tanh(input):
    return _arithm_op("tanh", input)
Exemplo n.º 27
0
def asinh(input):
    return _arithm_op("asinh", input)