/src/PROJ/src/msfn.cpp
Line
Count
Source
1
/* determine constant small m */
2
#include "proj.h"
3
#include "proj_internal.h"
4
#include <math.h>
5
1.87k
double pj_msfn(double sinphi, double cosphi, double es) {
6
return (cosphi / sqrt(1. - es * sinphi * sinphi));
7
}