is_close# static MathUtils.is_close(a: float, b: float, relative_tolerance: float = 1e-09, absolute_tolerance: float = 0.0) → bool# Whether two numbers are close to each other given relative and absolute tolerances. Parameters: afloat, intFirst number to compare. bfloat, intSecond number to compare. relative_tolerancefloatRelative tolerance. The default value is 1e-9. absolute_tolerancefloatAbsolute tolerance. The default value is 0.0. Returns: boolTrue if the two numbers are closed, False otherwise.