import math class Angle: @property def Rad2Deg(self): return 360 / (math.pi * 2) @property def Deg2Rad(self): return (math.pi * 2) / 360