zaq1xsw

Results 2 issues of zaq1xsw

util.js中的 下面两个方法中中文注释是不是反了,方法名和注释冲突 /** * 将弧度换算成角度 */ export function convertDegree2Radian(deg) { return deg * Math.PI / 180; } /** * 将角度换算成弧度 */ export function convertRadian2Degree(radian) { return radian * 180 /...