Matrix3x2.Equality(Matrix3x2, Matrix3x2) Operador
Definição
Retorna um valor que indica se as matrizes especificadas são iguais.Returns a value that indicates whether the specified matrices are equal.
public:
static bool operator ==(System::Numerics::Matrix3x2 value1, System::Numerics::Matrix3x2 value2);
public static bool operator == (System.Numerics.Matrix3x2 value1, System.Numerics.Matrix3x2 value2);
static member ( = ) : System.Numerics.Matrix3x2 * System.Numerics.Matrix3x2 -> bool
Public Shared Operator == (value1 As Matrix3x2, value2 As Matrix3x2) As Boolean
Parâmetros
- value1
- Matrix3x2
A primeira matriz a comparar.The first matrix to compare.
- value2
- Matrix3x2
A segunda matriz a ser comparada.The second matrix to compare.
Retornos
true se value1 e value2 forem iguais; caso contrário, false.true if value1 and value2 are equal; otherwise, false.
Comentários
Duas matrizes serão iguais se todos os elementos correspondentes forem iguais.Two matrices are equal if all their corresponding elements are equal.