この回転の値を、パラメータで渡される X、Y、Z の角(ラジアン)に従って設定します。
SIRotation.SetFromXYZAngles( SIVector3 in_pXZYAngles ); |
SIRotation.SetFromXYZAngles( angles ); |
パラメータ | タイプ | 説明 |
---|---|---|
angles | SIVector3 | 3D ベクトルに格納された、X、Y、Z の角(ラジアン) |
dim r1, rotAngles ' Create rotation. set r1 = XSIMath.CreateRotation ' Create 3D vector. set rotAngles = XSIMath.CreateVector3(1.5, 0.0, 0.0) r1.SetFromXYZAngles rotAngles |