NuclearDispersionSystem/ant-design-vue-jeecg/node_modules/@antv/util/lib/math/to-radian.js

7 lines
128 B
JavaScript
Raw Normal View History

2023-09-14 14:47:11 +08:00
var RADIAN = Math.PI / 180;
var toRadian = function toRadian(degree) {
return RADIAN * degree;
};
module.exports = toRadian;