We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Check whether two given floats are almost equal
a = 0.1 + 0.2 b = 0.3 print raylib.FloatEquals(a, b) // 1 (true — within epsilon) print raylib.FloatEquals(1.0, 2.0) // 0 (false)
There was an error while loading. Please reload this page.