Contents

multiply

Returns the result of multiplying this matrix by a given matrix that is on the right.

Declaration

WebKitCSSMatrix multiply(
    optional WebKitCSSMatrix? secondMatrix
);

Parameters

  • secondMatrix:

    The matrix to multiply.

Return Value

A new matrix that is the result of multiplying this matrix by the given matrix.

Discussion

The given matrix is on the right of the multiplication. This matrix is not modified by this method.

See Also

Applying Operations