Coverage Report

Created: 2026-01-09 07:03

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/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
1.87k
    return (cosphi / sqrt(1. - es * sinphi * sinphi));
7
1.87k
}