Example #1
0
def radians(degree):
    from org.meta.math import MathUtil

    return MathUtil.toRadians(degree)
Example #2
0
def degrees(radian):
    from org.meta.math import MathUtil

    return MathUtil.toDegrees(radian)