5 lines
93 B
Python
5 lines
93 B
Python
import math
|
|
|
|
class Angle:
|
|
Rad2Deg = 360 / (math.pi * 2)
|
|
Deg2Rad = (math.pi * 2) / 360 |