| Vector2FEquality 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
Syntax public static bool operator ==(
Vector2F a,
Vector2F b
)
Public Shared Operator = (
a As Vector2F,
b As Vector2F
) As Boolean
public:
static bool operator ==(
Vector2F a,
Vector2F b
)
static let inline (=)
a : Vector2F *
b : Vector2F : bool
Parameters
- a
- Type: Slash.Math.Algebra.VectorsVector2F
First vector. - b
- Type: Slash.Math.Algebra.VectorsVector2F
Second vector.
Return Value
Type:
Boolean True if the two passed vectors are equal; otherwise, false.
See Also