2025-03-12 10:05:26 +01:00

5 lines
93 B
Python

import math
class Angle:
Rad2Deg = 360 / (math.pi * 2)
Deg2Rad = (math.pi * 2) / 360