Work around non-constness of MSVC HUGE_VAL by providing functions rather than * constants */
| 63 | /* Work around non-constness of MSVC HUGE_VAL by providing functions rather than |
| 64 | * constants */ |
| 65 | PJ_COORD proj_coord_error(void) { |
| 66 | PJ_COORD c; |
| 67 | c.v[0] = c.v[1] = c.v[2] = c.v[3] = HUGE_VAL; |
| 68 | return c; |
| 69 | } |
| 70 | |
| 71 | /**************************************************************************************/ |
| 72 | PJ_COORD pj_approx_2D_trans(PJ *P, PJ_DIRECTION direction, PJ_COORD coo) { |
no outgoing calls
no test coverage detected