公告板
版本库
filestore
活动
搜索
登录
main
/
DDE-WEB
前台页面
概况
操作记录
提交次数
目录
文档
派生
对比
blame
|
历史
|
原始文档
提交
ansel0926
2022-05-17
585932b46cb2dda666453a493f68cb47d3a5ccd5
[DDE-WEB.git]
/
libs
/
CesiumVectorTile
/
src
/
ThirdParty
/
proj4
/
lib
/
common
/
adjust_lat.js
1
2
3
4
5
6
var HALF_PI = Math.PI/2;
var sign = require('./sign');
module.exports = function(x) {
return (Math.abs(x) < HALF_PI) ? x : (x - (sign(x) * Math.PI));
};