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