MatrixEquals Method (Matrix, Matrix, Double)
|
Check if the components of two matrices are approximate equal.
Namespace:
DXFReaderNET
Assembly:
DXFReaderNET (in DXFReaderNET.dll) Version: 20.10.54
Syntax public static bool Equals(
Matrix a,
Matrix b,
double threshold
)
Public Shared Function Equals (
a As Matrix,
b As Matrix,
threshold As Double
) As Boolean
public:
static bool Equals(
Matrix a,
Matrix b,
double threshold
)
static member Equals :
a : Matrix *
b : Matrix *
threshold : float -> bool
STATIC METHOD Equals(
a AS Matrix,
b AS Matrix,
threshold AS REAL8
) AS LOGIC
Parameters
- a
- Type: DXFReaderNETMatrix
Matrix. - b
- Type: DXFReaderNETMatrix
Matrix. - threshold
- Type: SystemDouble
Maximum tolerance.
Return Value
Type:
BooleanTrue if the matrix components are almost equal or false in any other case.
See Also