Vector2EqualityComparer
Use this class to compare two Vector2 objects for equality with NUnit constraints. Use the static Vector2EqualityComparer.Instance
to have the calculation error value set to default 0.0001f. For any other error value, instantiate a new comparer object with the one argument constructor.
Static properties
Syntax |
Description |
Instance |
A comparer instance with the default error value set to 0.0001f. |
Constructors
Syntax |
Description |
Vector2EqualityComparer(float error) |
Creates an instance with a custom error value. |
Public methods
Syntax |
Description |
Equals(Vector2 expected, Vector2 actual) |
Compares the actual and expected Vector2 objects for equality using the Utils.AreFloatsEqual method. |
Example