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