Created
January 29, 2020 22:32
-
-
Save theorium-0/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
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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