SIRotation.GetXYZAngles

説明

3D ベクトル vAngles に格納されているこの回転から、X、Y、Z の角(ラジアン)を抽出します。

C#構文

SIRotation.GetXYZAngles( SIVector3 io_pXZYAngles );

スクリプト構文

SIRotation.GetXYZAngles( vAngles );

パラメータ

パラメータ タイプ 説明
vAngles SIVector3 この回転の X、Y、Z の角(ラジアン)からなる 3D ベクトル

VBScript の例

dim r1, rotAngles

' Create rotation.

set r1 = XSIMath.CreateRotation

' Create 3D Vector.

set rotAngles = XSIMath.CreateVector3

'do something on the rotation

r1.GetXYZAngles rotAngles

関連項目

SIRotation.SetFromXYZAngles SIRotation.XYZAngles