ベクトル vに回転r を右から掛け、結果をこのベクトルに格納します(this = v . r)
SIVector3.MulByRotation( v, r ); |
パラメータ | タイプ | 詳細 |
---|---|---|
v | SIVector3 | オペランドベクトル |
r | SIRotation | オペランド回転 |
dim v1, v2, rotAngles, r1 ' Create 3D vectors. set v1 = XSIMath.CreateVector3 set v2 = XSIMath.CreateVector3 set rotAngles = XSIMath.CreateVector3 ' Create Rotation. set r1 = XSIMath.CreateRotation v1.Set 1.0, 0.0, 0.0 rotAngles.Set 0.0, 0.0, 0.7853981633974483 r1.SetFromXYZAngles rotAngles v2.MulByRotation v1, r1 |