Skip to content

Instantly share code, notes, and snippets.

@theorium-0
Created January 29, 2020 22:32
Show Gist options
  • Select an option

  • Save theorium-0/322e0539224616715c686b7b5d7c24e1 to your computer and use it in GitHub Desktop.

Select an option

Save theorium-0/322e0539224616715c686b7b5d7c24e1 to your computer and use it in GitHub Desktop.

Revisions

  1. Ridley Neslon created this gist Jan 29, 2020.
    12 changes: 12 additions & 0 deletions GeoSolver.py
    Original 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)