Click or drag to resize
GeMatrixEquality Operator
Returns True if two matrices are equal, otherwise returns False.

Namespace: FDF.Common.Geometries
Assembly: FDF.Common (in FDF.Common.dll) Version: 3.0.0.0
Syntax
public static bool operator ==(
	GeMatrix m1,
	GeMatrix m2
)

Parameters

m1
Type: FDF.Common.GeometriesGeMatrix
The first matrix to compare.
m2
Type: FDF.Common.GeometriesGeMatrix
The second matrix to compare.

Return Value

Type: Boolean
Boolean that indicates whether the two matrix instances are equal.
Remarks
Note that double values can acquire error when operated upon, so that an exact comparison between two values that are logically equal may fail. Furthermore, using this equality operator, Double.NaN is not equal to itself.
See Also