SIMatrix3.MulInPlace

説明

この行列に行列 m を右から掛け、結果をこの行列に格納します(this = this . m)。 m)

C#構文

SIMatrix3.MulInPlace( SIMatrix3 in_pMatrix );

スクリプト構文

SIMatrix3.MulInPlace( m );

パラメータ

パラメータ タイプ 説明
m SIMatrix3 行列オペランド

VBScript の例

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

関連項目

SIMatrix3.Mul SIVector3 SIMatrix3 SIMatrix4 SIRotation SITransformation SIQuaternion