コード例 #1
0
ファイル: MainState.cs プロジェクト: ezhangle/synthesis
 /// <summary>
 /// Rotates the active robot about its origin by a set vector
 /// </summary>
 public void RotateRobot(Vector3 rotation)
 {
     ActiveRobot.RotateRobot(rotation);
 }
コード例 #2
0
ファイル: MainState.cs プロジェクト: ezhangle/synthesis
 /// <summary>
 /// Rotates the active robot about its origin by a mathematical 4x4 matrix
 /// </summary>
 public void RotateRobot(BulletSharp.Math.Matrix rotationMatrix)
 {
     ActiveRobot.RotateRobot(rotationMatrix);
 }