| BoundsEqualsEpsilon Method  | 
 
            Indicates whether each value of another instance of this type
            is within the required tolerance of the corresponding value of this instance.
            
 
    Namespace: 
   AGI.Foundation
    Assembly:
   AGI.Foundation.Core (in AGI.Foundation.Core.dll) Version: 25.1.421.0 (25.1.421.0)
 Syntax
Syntaxpublic bool EqualsEpsilon(
	Bounds other,
	double epsilon
)
Public Function EqualsEpsilon ( 
	other As Bounds,
	epsilon As Double
) As Boolean
public:
virtual bool EqualsEpsilon(
	Bounds other, 
	double epsilon
) sealed
abstract EqualsEpsilon : 
        other : Bounds * 
        epsilon : float -> bool 
override EqualsEpsilon : 
        other : Bounds * 
        epsilon : float -> bool Parameters
- other
- Type: AGI.FoundationBounds
 The set of Bounds to compare to this instance.
- epsilon
- Type: SystemDouble
 The limit at which the absolute differences between the 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