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
| import tkinter as tk | |
| from math import * | |
| # used to switch between units of rad, and deg | |
| convert_constant = 1 | |
| inverse_convert_constant = 1 | |
| btn_params = { | |
| 'padx': 16, | |
| 'pady': 1, |