SIRotation.SetFromXYZAnglesValues

説明

オイラー角(ラジアン)を設定します。

C#構文

SIRotation.SetFromXYZAnglesValues( Double in_dX, Double in_dY, Double in_dZ );

スクリプト構文

SIRotation.SetFromXYZAnglesValues();

JScript の例

var oRoot = Application.ActiveProject.ActiveScene.Root;

var oCube = oRoot.AddGeometry("Cube","MeshSurface", "CubeParent");

var oTrans = oCube.Kinematics.Local.Transform;

var oRot = XSIMath.CreateRotation();

oRot.SetFromXYZAnglesValues( 0, XSIMath.DegreesToRadians( 45 ), XSIMath.DegreesToRadians( 45 ) );

oTrans.SetRotation( oRot );		

oCube.Kinematics.Local.Transform = oTrans;

関連項目

SIRotation.RotX SIRotation.RotY SIRotation.RotZ SIRotation.XYZAngles