Skip to content

Instantly share code, notes, and snippets.

@Ridley-nelson17
Created January 29, 2020 22:32
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Ridley-nelson17/322e0539224616715c686b7b5d7c24e1 to your computer and use it in GitHub Desktop.
Save Ridley-nelson17/322e0539224616715c686b7b5d7c24e1 to your computer and use it in GitHub Desktop.
“Janky” whipped together code that I plan on using to build a Geometry helper with
class GeoSolver:
def __init__(self):
return
def triangular_solver(self, a=None, b=None, c=None):
def solve_for_angles(self, a, b, c):
if (a & b & c == None):
return
else:
return_value = 180
return_values = []
# TODO: finish method, (this methood should be capable of solving for all sides given at least one)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment