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