Tests a vector for inequality with another vector.

Namespace:  Bespoke.Common.LinearAlgebra
Assembly:  Bespoke.Common (in Bespoke.Common.dll) Version: 4.3.0.0 (4.3.0.0)

Syntax

C#
public static bool operator !=(
	Vector2 lhs,
	Vector2 rhs
)
Visual Basic (Declaration)
Public Shared Operator <> ( _
	lhs As Vector2, _
	rhs As Vector2 _
) As Boolean
Visual C++
public:
static bool operator !=(
	Vector2 lhs, 
	Vector2 rhs
)

Parameters

lhs
Type: Bespoke.Common.LinearAlgebra..::.Vector2
The vector on the left of the equal sign.
rhs
Type: Bespoke.Common.LinearAlgebra..::.Vector2
The vector on the right of the equal sign.

Return Value

true if the vectors are not equal; false otherwise.

See Also