BaoXs
2022-05-14 3e82664fdde7d5d7db1f8ca257a5d081e8fe9f42
1
2
3
4
module.exports = function(eccent, sinphi, cosphi) {
  var con = eccent * sinphi;
  return cosphi / (Math.sqrt(1 - con * con));
};