 | Vector2IEquality Operator |
Indicates if the two passed vectors are equal.
Namespace: Slash.Math.Algebra.VectorsAssembly: Slash.Math (in Slash.Math.dll) Version: 1.0.6018.40177
Syntaxpublic static bool operator ==(
Vector2I a,
Vector2I b
)
Public Shared Operator = (
a As Vector2I,
b As Vector2I
) As Boolean
public:
static bool operator ==(
Vector2I a,
Vector2I b
)
static let inline (=)
a : Vector2I *
b : Vector2I : bool
Parameters
- a
- Type: Slash.Math.Algebra.VectorsVector2I
First vector. - b
- Type: Slash.Math.Algebra.VectorsVector2I
Second vector.
Return Value
Type:
Boolean True if the two passed vectors are equal; otherwise, false.
See Also