10 lines
174 B
Python
10 lines
174 B
Python
import math
|
|
|
|
class Angle:
|
|
@property
|
|
def Rad2Deg(self):
|
|
return 360 / (math.pi * 2)
|
|
|
|
@property
|
|
def Deg2Rad(self):
|
|
return (math.pi * 2) / 360 |