Created
January 29, 2020 22:32
-
-
Save theorium-0/322e0539224616715c686b7b5d7c24e1 to your computer and use it in GitHub Desktop.
Revisions
-
Ridley Neslon created this gist
Jan 29, 2020 .There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,12 @@ 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)