Checks if this number is close to other within a delta.
other
delta
bool isCloseTo(num other, {num delta = 0.1}) { return (this - other).abs() < delta; }