def radians(degree): from org.meta.math import MathUtil return MathUtil.toRadians(degree)
def degrees(radian): from org.meta.math import MathUtil return MathUtil.toDegrees(radian)