| Parameter | Description |
|---|---|
| other | The object to compare against this vector. |
bool
true if other is a Vector4 that is exactly equal to this vector, otherwise false.
Compares two vectors to each other and evaluates if they are equal.
Due to floating point inaccuracies, this might return false for vectors which are essentially (but not exactly) equal. Use the == operator to test two vectors for approximate equality.
| Parameter | Description |
|---|---|
| other | The vector to compare against this vector. |
bool
true if the given vector is exactly equal to this vector, otherwise false.
Compares two vectors to each other and evaluates if they are equal.
Due to floating point inaccuracies, this might return false for vectors which are essentially (but not exactly) equal. Use the == operator to test two vectors for approximate equality.