Exemplo n.º 1
0
def find_opposite_given_hypotenuse(theta, hypotenuse, mode, rounding_place=2):
    return trig_functions.sin_float(theta, mode, rounding_place) * hypotenuse
Exemplo n.º 2
0
def find_opposite_given_hypotenuse(theta, hypotenuse, mode, rounding_place=2):
    return trig_functions.sin_float(theta, mode, rounding_place) * hypotenuse
Exemplo n.º 3
0
def find_hypotenuse_given_opposite(theta, opposite, mode, rounding_place=2):
    return (1 /
            trig_functions.sin_float(theta, mode, rounding_place)) * opposite
Exemplo n.º 4
0
def find_hypotenuse_given_opposite(theta, opposite, mode, rounding_place=2):
    return (1 / trig_functions.sin_float(theta, mode, rounding_place)) * opposite