blob: 5b49f4163661fb515479f9434adf15b3ce116d03 (
plain)
1
2
3
4
5
6
7
|
/* determine constant small m */
#include <math.h>
#include <projects.h>
double
pj_msfn(double sinphi, double cosphi, double es) {
return (cosphi / sqrt (1. - es * sinphi * sinphi));
}
|