forgeplus-react/node_modules/@antv/util/lib/math/to-radian.js

7 lines
128 B
JavaScript

var RADIAN = Math.PI / 180;
var toRadian = function toRadian(degree) {
return RADIAN * degree;
};
module.exports = toRadian;