SIRotation.SetFromMatrix3

説明

回転を、行列表現で設定します。

スクリプト 構文

SIRotation.SetFromMatrix3( m );

パラメータ

パラメータ タイプ 詳細
m SIMatrix3 行列オペランド

VBScript の例

' Create transformation.
set oTransformation = XSIMath.CreateTransform
' create rotation object.
set oRotation= XSIMath.CreateRotation
' create matrix3 object.
set oMatrix3= XSIMath.CreateMatrix3
'Get the rotation 
oRotation.GetMatrix3 oMatrix3
'Modify the matrix
oMatrix3.value(2,1) = 5.0
'Set the rotation from matrix3
oRotation.SetFromMatrix3 oMatrix3

関連項目

SIVector3 SIMatrix3 SIMatrix4 SIRotation SITransformation SIQuaternion