Matrix.Multiply(Matrix, Matrix) Method

Definition

Multiplies two matrices and returns the result.

public:
 static Microsoft::Maui::Controls::Shapes::Matrix Multiply(Microsoft::Maui::Controls::Shapes::Matrix trans1, Microsoft::Maui::Controls::Shapes::Matrix trans2);
public static Microsoft.Maui.Controls.Shapes.Matrix Multiply(Microsoft.Maui.Controls.Shapes.Matrix trans1, Microsoft.Maui.Controls.Shapes.Matrix trans2);
static member Multiply : Microsoft.Maui.Controls.Shapes.Matrix * Microsoft.Maui.Controls.Shapes.Matrix -> Microsoft.Maui.Controls.Shapes.Matrix
Public Shared Function Multiply (trans1 As Matrix, trans2 As Matrix) As Matrix

Parameters

trans1
Matrix

The first matrix.

trans2
Matrix

The second matrix.

Returns

The result of multiplying trans1 by trans2.

Applies to