Matrix4x4.Equality(Matrix4x4, Matrix4x4) Opérateur
Définition
Retourne une valeur qui indique si les matrices spécifiées sont égales.Returns a value that indicates whether the specified matrices are equal.
public:
static bool operator ==(System::Numerics::Matrix4x4 value1, System::Numerics::Matrix4x4 value2);
public static bool operator == (System.Numerics.Matrix4x4 value1, System.Numerics.Matrix4x4 value2);
static member ( = ) : System.Numerics.Matrix4x4 * System.Numerics.Matrix4x4 -> bool
Public Shared Operator == (value1 As Matrix4x4, value2 As Matrix4x4) As Boolean
Paramètres
- value1
- Matrix4x4
Première matrice à comparer.The first matrix to compare.
- value2
- Matrix4x4
Deuxième matrice à comparer.The second matrix to care
Retours
true
si value1
et value2
sont égales ; sinon, false
.true
if value1
and value2
are equal; otherwise, false
.
Remarques
Deux matrices sont égales si tous leurs éléments correspondants sont égaux.Two matrices are equal if all their corresponding elements are equal.