ベクトル vに行列 m を右から掛け、結果をこのベクトルに格納します(this = v . m )
SIVector3.MulByMatrix3( v, m ); |
dim v1, v2, m1 ' Create 3D vectors. set v1 = XSIMath.CreateVector3 set v2 = XSIMath.CreateVector3 ' Create 3x3 matrix. set m1 = XSIMath.CreateMatrix3 v1.Set 1.0, 2.0, 3.0 m1.SetIdentity v2.MulByMatrix3 v1, m1 |