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