このベクトルに行列 m を右から掛け、置き換えます(this = this . m)
SIVector3.MulByMatrix4InPlace( SIMatrix4 in_pMatrix ); |
SIVector3.MulByMatrix4InPlace( m ); |
パラメータ | タイプ | 説明 |
---|---|---|
m | SIMatrix4 | オペランド行列 |
dim v1, m1 ' Create 3D vector. set v1 = XSIMath.CreateVector3 ' Create 4x4 matrix. set m1 = XSIMath.CreateMatrix4 v1.Set 1.0, 2.0, 3.0 m1.SetIdentity v1.MulByMatrix4InPlace m1 |