Exemplo n.º 1
0
def find_adjacent_given_opposite(theta, opposite, mode, rounding_place=2):
    return (1 /
            trig_functions.tan_float(theta, mode, rounding_place)) * opposite
Exemplo n.º 2
0
def find_adjacent_given_opposite(theta, opposite, mode, rounding_place=2):
    return (1 / trig_functions.tan_float(theta, mode, rounding_place)) * opposite
Exemplo n.º 3
0
def find_opposite_given_adjacent(theta, adjacent, mode, rounding_place=2):
    return trig_functions.tan_float(theta, mode, rounding_place) * adjacent
Exemplo n.º 4
0
def find_opposite_given_adjacent(theta, adjacent, mode, rounding_place=2):
    return trig_functions.tan_float(theta, mode, rounding_place) * adjacent