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
from math import sin, cos, pi, sqrt, atan2, acos | |
from enum import Enum | |
import time | |
clipboard = None | |
try: | |
clipboard = __import__("clipboard") | |
except ModuleNotFoundError: | |
print("Module `clipboard` not found.\nThe clipboard module would automatically copy the output of the script to your clipboard.\nTo install, run `pip install clipboard` in a cmd (this is not a requirement)") |
OlderNewer