This is an old revision of the document!
approximately(<-val1 <-val2)
Compares two floating point values and returns true if they are similar.
Floating point imprecision makes comparing floats using the equals operator inaccurate. For example, (1.0 == 10.0 / 10.0) might not return true every time. Approximately() compares two floats and returns true if they are within a small value (Epsilon1)) of each other.
if (approximately(1.000001 1)) trace("1.000001 is approximately equal to 1") endif
⇐ Index