SIRotation.Mul

説明

回転r1に回転r2を右から掛け、結果をこの回転に格納します(this = r1 . r2)

C#構文

SIRotation.Mul( SIRotation in_pRot1, SIRotation in_pRot2 );

スクリプト構文

SIRotation.Mul( r1, r2 );

パラメータ

パラメータ タイプ 説明
r1 SIRotation 回転オペランド
r2 SIRotation 回転オペランド

VBScript の例

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

関連項目

SIRotation.MulInPlace SIVector3 SIMatrix3 SIMatrix4 SIRotation SITransformation SIQuaternion