Vector2u.Equality Operator

SFML.Net

Vector2uEquality Operator
Operator == overload ; check vector equality

Namespace: SFML.System
Assembly: sfmlnet-system-2 (in sfmlnet-system-2.dll) Version: 2.2.0.0 (2.2.0)
Syntax
public static bool operator ==(
	Vector2u v1,
	Vector2u v2
)
Public Shared Operator = ( 
	v1 As Vector2u,
	v2 As Vector2u
) As Boolean
public:
static bool operator ==(
	Vector2u v1, 
	Vector2u v2
)
static let inline (=)
        v1 : Vector2u * 
        v2 : Vector2u  : bool

Parameters

v1
Type: SFML.SystemVector2u
First vector
v2
Type: SFML.SystemVector2u
Second vector

Return Value

Type: Boolean
v1 == v2
See Also