msfnz.js 126 B

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