Multiplies the current matrix by another matrix passed as parameter, returns the resulting matrix in the output parameter.
シンタックス
'宣言
Public Overloads Sub Multiply( _
ByRef As Matrix, _
ByRef As Matrix _
)
'使用法
Dim instance As Matrix
Dim right As Matrix
Dim result As Matrix
instance.Multiply(right, result)
public void Multiply(
ref Matrix ,
out Matrix
)
パラメータ
- right
- The matrix to multiply the current by (the right matrix in the multiplication).
- result
- The product of multiplying the two matrices.
参照