def deg2rad(d): return MV2.pi * MV2.fmod(d, 360) / 180
def rad2deg(r): return MV2.fmod(180 * r / MV2.pi, 360)