Matrix6By6EqualsEpsilon Method |
Returns true if all of the elements of this matrix are within epsilon
of the same elements of the specified matrix. That is, in order for the matrices to be
considered equal (and for this function to return true), the absolute value of the
difference between each of their elements must be less than or equal to epsilon.
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(
Matrix6By6 other,
double epsilon
)
Public Function EqualsEpsilon (
other As Matrix6By6,
epsilon As Double
) As Boolean
public:
virtual bool EqualsEpsilon(
Matrix6By6^ other,
double epsilon
) sealed
abstract EqualsEpsilon :
other : Matrix6By6 *
epsilon : float -> bool
override EqualsEpsilon :
other : Matrix6By6 *
epsilon : float -> bool
Parameters
- other
- Type: AGI.Foundation.CoordinatesMatrix6By6
The Matrix6By6 to compare to this matrix. - epsilon
- Type: SystemDouble
The largest difference between the elements of the matrices for which they will be considered equal.
Return Value
Type:
Booleantrue if the matrices are equal as defined by the epsilon value.
Implements
IEquatableEpsilonTEqualsEpsilon(T, Double)See Also