CartographicExtentEqualsEpsilon Method |
Indicates whether each coordinate value of another instance of this type
is within the required tolerance of the corresponding coordinate value of this instance. A negative tolerance effectively contracts the extent;
a positive tolerance effectively expands 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 EqualsEpsilon(
CartographicExtent other,
double epsilon
)
Public Function EqualsEpsilon (
other As CartographicExtent,
epsilon As Double
) As Boolean
public:
virtual bool EqualsEpsilon(
CartographicExtent^ other,
double epsilon
) sealed
abstract EqualsEpsilon :
other : CartographicExtent *
epsilon : float -> bool
override EqualsEpsilon :
other : CartographicExtent *
epsilon : float -> bool
Parameters
- other
- Type: AGI.Foundation.CoordinatesCartographicExtent
The set of CartographicExtent to compare to this instance. - epsilon
- Type: SystemDouble
The limit at which the absolute differences between the coordinate values will not be considered equal.
Return Value
Type:
Boolean if the absolute differences are less than or equal to
epsilon; otherwise
. A negative tolerance effectively contracts the extent; a positive tolerance effectively expands the extent.
Implements
IEquatableEpsilonTEqualsEpsilon(T, Double)See Also