public interface Geographic
Modifier and Type | Method and Description |
---|---|
processing.core.PVector |
geoToScreen(float geoX,
float geoY)
Should provide the screen coordinates corresponding to the given geographic coordinates.
|
processing.core.PVector |
screenToGeo(float screenX,
float screenY)
Should provide the geographic coordinates corresponding to the given screen coordinates.
|
processing.core.PVector geoToScreen(float geoX, float geoY)
geoX
- Geographic x coordinate.geoY
- Geographic y coordinate.processing.core.PVector screenToGeo(float screenX, float screenY)
screenX
- Screen x coordinate.screenY
- Screen y coordinate.