| UniversalTransverseMercatorEqualsEpsilon 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.
            
 
    Namespace: 
   AGI.Foundation.Coordinates
    Assembly:
   AGI.Foundation.Core (in AGI.Foundation.Core.dll) Version: 25.1.421.0 (25.1.421.0)
 Syntax
Syntaxpublic bool EqualsEpsilon(
	UniversalTransverseMercator other,
	double epsilon
)
Public Function EqualsEpsilon ( 
	other As UniversalTransverseMercator,
	epsilon As Double
) As Boolean
public:
virtual bool EqualsEpsilon(
	UniversalTransverseMercator other, 
	double epsilon
) sealed
abstract EqualsEpsilon : 
        other : UniversalTransverseMercator * 
        epsilon : float -> bool 
override EqualsEpsilon : 
        other : UniversalTransverseMercator * 
        epsilon : float -> bool Parameters
- other
- Type: AGI.Foundation.CoordinatesUniversalTransverseMercator
 The set of UniversalTransverseMercator coordinates 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 
.
            
Implements
IEquatableEpsilonTEqualsEpsilon(T, Double) See Also
See Also