msfnz.js 129 B

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