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

7 lines
128 B
JavaScript

var DEGREE = 180 / Math.PI;
var toDegree = function toDegree(radian) {
return DEGREE * radian;
};
module.exports = toDegree;