diff options
| author | Thomas Knudsen <busstoptaktik@users.noreply.github.com> | 2017-11-08 03:30:20 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-11-08 03:30:20 +0100 |
| commit | 3ff9899dd4407877ace4daf2794cb759ccdbc235 (patch) | |
| tree | 9f0d4d872b0756d18fc163adc2b1d90275cb802c /src/proj.h | |
| parent | bf673102bc86b241976df0d90f8ca1b40880b500 (diff) | |
| download | PROJ-3ff9899dd4407877ace4daf2794cb759ccdbc235.tar.gz PROJ-3ff9899dd4407877ace4daf2794cb759ccdbc235.zip | |
Improved IO predicates (#648)
* enter proj_angular_input and proj_angular_output, exit proj_angular_left and proj_angular_right
* remove unused variable 'unit'
* In gie: remove unused func 'torad_if_needed', and add static keyword where needed
* In gie: add some comments
Diffstat (limited to 'src/proj.h')
| -rw-r--r-- | src/proj.h | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -371,8 +371,9 @@ typedef enum PJ_DIRECTION PJ_DIRECTION; -int proj_angular_left (PJ *P); -int proj_angular_right (PJ *P); +int proj_angular_input (PJ *P, enum PJ_DIRECTION dir); +int proj_angular_output (PJ *P, enum PJ_DIRECTION dir); + PJ_COORD proj_trans (PJ *P, PJ_DIRECTION direction, PJ_COORD coord); |
