Multiply the specified matrix and matrices.
Namespace:
Eto.Drawing
Assembly:
Eto (in Eto.dll) Version: 2.5.3-dev
Syntax public static IMatrix Multiply(
IMatrix matrix,
params IMatrix[] matrices
)
Public Shared Function Multiply (
matrix As IMatrix,
ParamArray matrices As IMatrix()
) As IMatrix
static member Multiply :
matrix : IMatrix *
matrices : IMatrix[] -> IMatrix
Parameters
- matrix
- Type: Eto.DrawingIMatrix
Matrix to multiply with - matrices
- Type: Eto.DrawingIMatrix
Matrices to append
Return Value
Type:
IMatrixA new matrix with the product of multiplying each of the specified matrix and matrices
See Also