| MathUtilsFloatEquals Method |
| Name | Description | |
|---|---|---|
| FloatEquals(Single, Single) |
Checks if the passed float values are "equal". I.e. checking if the difference between the two is smaller than the epsilon value specified in MathUtils.Epsilon.
| |
| FloatEquals(Vector2F, Vector2F) |
Checks if the passed vector's components are "equal". I.e. checking if the difference between the components of the two is smaller than the epsilon value specified in MathUtils.Epsilon.
| |
| FloatEquals(Single, Single, Single) |
Checks if a floating point Value is equal to another, within a certain tolerance.
| |
| FloatEquals(Vector2F, Vector2F, Single) |
Checks if the passed vector's components are "equal". I.e. checking if the difference between the components of the two is smaller than the passed delta.
|