TerrainProviderInGlobalBounds Method |
Returns if the coordinates are in global bounds which is:
[-π, π] for longitude and
[-π/2, π/2] for latitude.
Namespace:
AGI.Foundation.Terrain
Assembly:
AGI.Foundation.Models (in AGI.Foundation.Models.dll) Version: 24.2.419.0 (24.2.419.0)
Syntax protected bool InGlobalBounds(
double longitude,
double latitude
)
Protected Function InGlobalBounds (
longitude As Double,
latitude As Double
) As Boolean
protected:
bool InGlobalBounds(
double longitude,
double latitude
)
member InGlobalBounds :
longitude : float *
latitude : float -> bool
Parameters
- longitude
- Type: SystemDouble
The longitude to check. - latitude
- Type: SystemDouble
The latitude to check.
Return Value
Type:
BooleanA boolean value indicating if the coordinates are in global bounds.
See Also