UNPKG

@antv/g2

Version:

the Grammar of Graphics in Javascript

7 lines 181 B
export function toRadian(degree) { return (degree * Math.PI) / 180; } export function toDegree(radian) { return (radian * 180) / Math.PI; } //# sourceMappingURL=angle.js.map