この変換の回転部分を、軸/角表現を使用して設定します。
SITransformation.SetRotationFromAxisAngle( in_pAxis, in_dAngle ); |
dim t1, axis ' Create transformation. set t1 = XSIMath.CreateTransform ' Create 3D vector. set axis = XSIMath.CreateVector3 axis.Set 1.0, 0.0, 0.0 t1.SetRotationFromAxisAngle axis, 1.5 |