Beispiel #1
0
def deg2rad(d):
    return MV2.pi * MV2.fmod(d, 360) / 180
Beispiel #2
0
def deg2rad(d):
    return MV2.pi * MV2.fmod(d, 360) / 180
Beispiel #3
0
def rad2deg(r):
    return MV2.fmod(180 * r / MV2.pi, 360)
Beispiel #4
0
def rad2deg(r):
    return MV2.fmod(180 * r / MV2.pi, 360)