回転r1に回転r2を右から掛け、結果をこの回転に格納します(this = r1 . r2)
SIRotation.Mul( r1, r2 ); |
パラメータ | タイプ | 詳細 |
---|---|---|
r1 | SIRotation | 回転オペランド |
r2 | SIRotation | 回転オペランド |
dim r1, r2, r3 ' Create rotations. set r1 = XSIMath.CreateRotation set r2 = XSIMath.CreateRotation set r3 = XSIMath.CreateRotation 'Do something with rotations r1 and r2 r3.Mul r1, r2 |