CartographicExtentIsInsideExtentEpsilon Method |
Determines if the specified location is inside the extent.
Namespace:
AGI.Foundation.Coordinates
Assembly:
AGI.Foundation.Core (in AGI.Foundation.Core.dll) Version: 24.2.419.0 (24.2.419.0)
Syntax public bool IsInsideExtentEpsilon(
double longitude,
double latitude,
double epsilon
)
Public Function IsInsideExtentEpsilon (
longitude As Double,
latitude As Double,
epsilon As Double
) As Boolean
public:
bool IsInsideExtentEpsilon(
double longitude,
double latitude,
double epsilon
)
member IsInsideExtentEpsilon :
longitude : float *
latitude : float *
epsilon : float -> bool
Parameters
- longitude
- Type: SystemDouble
The longitude. - latitude
- Type: SystemDouble
The latitude. - epsilon
- Type: SystemDouble
The value from the boundary that determines on-border inclusiveness.
Return Value
Type:
Boolean if the specified location is inside the extent, or on the border (within
epsilon); otherwise
.
See Also