rectMoreOrLessEquals function Null safety
Asserts that two Rects are equal, within some tolerated error.
Two values are considered equal if the difference between them is within
precisionErrorTolerance of the larger one. This is an arbitrary value
which can be adjusted using the epsilon
argument. This matcher is intended
to compare floating point numbers that are the result of different sequences
of operations, such that they may have accumulated slightly different
errors.
See also:
- moreOrLessEquals, which is for doubles.
- offsetMoreOrLessEquals, which is for Offsets.
- within, which offers a generic version of this functionality that can be used to match Rects as well as other types.
Implementation
Matcher rectMoreOrLessEquals(Rect value, { double epsilon = precisionErrorTolerance }) {
return _IsWithinDistance<Rect>(_rectDistance, value, epsilon);
}