この行列に行列 m を右から掛け、結果をこの行列に格納します(this = this . m)。 m)
SIMatrix3.MulInPlace( SIMatrix3 in_pMatrix ); |
SIMatrix3.MulInPlace( m ); |
パラメータ | タイプ | 説明 |
---|---|---|
m | SIMatrix3 | 行列オペランド |
dim m1, m2 ' Create 3x3 matrices. set m1 = XSIMath.CreateMatrix3(1.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 3.0) set m2 = XSIMath.CreateMatrix3(4.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 2.0) m1.MulInPlace m2 |