Matrix3x2.Multiply Operador
Definição
Executa uma operação de multiplicação em uma matriz.Performs a multiplication operation on a matrix.
Sobrecargas
| Multiply(Matrix3x2, Matrix3x2) |
Retorna a matriz que resulta da multiplicação de duas matrizes juntas.Returns the matrix that results from multiplying two matrices together. |
| Multiply(Matrix3x2, Single) |
Retorna a matriz que resulta da colocação em escala de todos os elementos de uma matriz especificada por um fator escalar.Returns the matrix that results from scaling all the elements of a specified matrix by a scalar factor. |
Multiply(Matrix3x2, Matrix3x2)
Retorna a matriz que resulta da multiplicação de duas matrizes juntas.Returns the matrix that results from multiplying two matrices together.
public:
static System::Numerics::Matrix3x2 operator *(System::Numerics::Matrix3x2 value1, System::Numerics::Matrix3x2 value2);
public static System.Numerics.Matrix3x2 operator * (System.Numerics.Matrix3x2 value1, System.Numerics.Matrix3x2 value2);
static member ( * ) : System.Numerics.Matrix3x2 * System.Numerics.Matrix3x2 -> System.Numerics.Matrix3x2
Public Shared Operator * (value1 As Matrix3x2, value2 As Matrix3x2) As Matrix3x2
Parâmetros
- value1
- Matrix3x2
A primeira matriz.The first matrix.
- value2
- Matrix3x2
A segunda matriz.The second matrix.
Retornos
A matriz do produto.The product matrix.
Comentários
O Multiply método define a operação do operador de multiplicação para Matrix3x2 objetos.The Multiply method defines the operation of the multiplication operator for Matrix3x2 objects.
Aplica-se a
Multiply(Matrix3x2, Single)
Retorna a matriz que resulta da colocação em escala de todos os elementos de uma matriz especificada por um fator escalar.Returns the matrix that results from scaling all the elements of a specified matrix by a scalar factor.
public:
static System::Numerics::Matrix3x2 operator *(System::Numerics::Matrix3x2 value1, float value2);
public static System.Numerics.Matrix3x2 operator * (System.Numerics.Matrix3x2 value1, float value2);
static member ( * ) : System.Numerics.Matrix3x2 * single -> System.Numerics.Matrix3x2
Public Shared Operator * (value1 As Matrix3x2, value2 As Single) As Matrix3x2
Parâmetros
- value1
- Matrix3x2
A matriz a escalar.The matrix to scale.
- value2
- Single
O valor de colocação em escala a ser usado.The scaling value to use.
Retornos
A matriz escalada.The scaled matrix.
Comentários
O Multiply método define a operação do operador de multiplicação para Matrix3x2 objetos.The Multiply method defines the operation of the multiplication operator for Matrix3x2 objects.