3D ベクトル vAngles に格納されているこの回転から、X、Y、Z の角(ラジアン)を抽出します。
SIRotation.GetXYZAngles( SIVector3 io_pXZYAngles ); |
SIRotation.GetXYZAngles( vAngles ); |
パラメータ | タイプ | 説明 |
---|---|---|
vAngles | SIVector3 | この回転の X、Y、Z の角(ラジアン)からなる 3D ベクトル |
dim r1, rotAngles ' Create rotation. set r1 = XSIMath.CreateRotation ' Create 3D Vector. set rotAngles = XSIMath.CreateVector3 'do something on the rotation r1.GetXYZAngles rotAngles |