Click or drag to resize

MathUtilsFloatEquals(Single, Single, Single) Method

Checks if a floating point Value is equal to another, within a certain tolerance.

Namespace: Internal.tainicom.Aether.Physics2D.Common
Assembly: NeoAxis.Core (in NeoAxis.Core.dll) Version: 2026.1.1.0 (2026.1.1.0)
Syntax
C#
public static bool FloatEquals(
	float value1,
	float value2,
	float delta
)

Parameters

value1  Single
The first floating point Value.
value2  Single
The second floating point Value.
delta  Single
The floating point tolerance.

Return Value

Boolean
True if the values are "equal", false otherwise.
See Also