この変換の親空間に定義される回転r を適用します。
SITransformation.AddParentRotation( in_pRotation, [in_bIncrementEulerAngles] ); |
パラメータ | タイプ | 詳細 |
---|---|---|
in_pRotation | SIRotation | 適用する回転 |
in_bIncrementEulerAngles | Boolean | true の場合は、以前の角度をターゲットに使用して、結果として生じる回転のオイラー角を更新します。
デフォルト値: False |
dim t1, r1 ' Create transformation. set t1 = XSIMath.CreateTransform ' Create Rotation. set r1 = XSIMath.CreateRotation 'Do something on t1 and r1 'Then add a rotation at the parent level t1.AddParentRotation r1 |