Tests whether two specified matrices are not equal.

Namespace:  AForge.Math
Assembly:  AForge.Math (in AForge.Math.dll) Version: 2.2.5.0 (2.2.5.0)

Syntax

C#
public static bool operator !=(
	Matrix4x4 matrix1,
	Matrix4x4 matrix2
)

Parameters

matrix1
Type: AForge.Math..::.Matrix4x4
The left-hand matrix.
matrix2
Type: AForge.Math..::.Matrix4x4
The right-hand matrix.

Return Value

Returns trueTruetruetrue (True in Visual Basic) if the two matrices are not equal or falseFalsefalsefalse (False in Visual Basic) otherwise.

See Also