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