gN.js 107 B

1234
  1. export default function(a, e, sinphi) {
  2. var temp = e * sinphi;
  3. return a / Math.sqrt(1 - temp * temp);
  4. }