Changes between Initial Version and Version 1 of Ticket #4888, comment 5


Ignore:
Timestamp:
Apr 19, 2021, 9:50:22 AM (3 years ago)
Author:
logi

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #4888, comment 5

    initial v1  
    11OK, this is actually fixed on master. I'm looking at this code which seems to be a bit more sophisticated than my line distinguishing -0 from +0.
    2 ```
     2{{{
    33    /* Do the direction calculation */
    44    az = spheroid_direction(&g1, &g2, spheroid);
     
    66    return az < -0 ? 2*M_PI + az : az;
    77    // return az;
    8 ```
     8}}}