Example #1
0
def find_adjacent_given_hypotenuse(theta, hypotenuse, mode, rounding_place=2):
    return trig_functions.cos_float(theta, mode, rounding_place) * hypotenuse
Example #2
0
def find_adjacent_given_hypotenuse(theta, hypotenuse, mode, rounding_place=2):
    return trig_functions.cos_float(theta, mode, rounding_place) * hypotenuse
Example #3
0
def find_hypotenuse_given_adjacent(theta, adjacent, mode, rounding_place=2):
    return (1 /
            trig_functions.cos_float(theta, mode, rounding_place)) * adjacent
Example #4
0
def find_hypotenuse_given_adjacent(theta, adjacent, mode, rounding_place=2):
    return (1 / trig_functions.cos_float(theta, mode, rounding_place)) * adjacent