Skip to content

Commit 44241fa

Browse files
committed
Merged Confiliced in Transformhelper.cs
2 parents 23e2f36 + 9a1bd1e commit 44241fa

File tree

3 files changed

+8
-9
lines changed

3 files changed

+8
-9
lines changed

AttitudeIndicator/AttitudeIndicator.csproj

-1
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,6 @@
6767
<Compile Include="EulerAnglesDisplay.xaml.cs">
6868
<DependentUpon>EulerAnglesDisplay.xaml</DependentUpon>
6969
</Compile>
70-
<Compile Include="GimbalVisual3D.cs" />
7170
<Compile Include="HorizontCanvas.cs" />
7271
<Compile Include="NotchRing.cs" />
7372
<Compile Include="QuaternionDisplay.xaml.cs">

AttitudeIndicator/TransformationHelper.cs

+5
Original file line numberDiff line numberDiff line change
@@ -68,14 +68,19 @@ public static Vector3D GetEulerangle(Matrix3D mat)
6868
return new Vector3D(phi, theta, psi);
6969
}
7070

71+
7172
public static Quaternion UnitQuaternionFromEulerAngles(double Psi, double Theta, double Phi)
7273
{
7374
var q = new Quaternion(new Vector3D(0, 0, 1), Psi);
7475
q *= new Quaternion(new Vector3D(0, 1, 0), Theta);
7576
q *= new Quaternion(new Vector3D(1, 0, 0), Phi);
77+
7678
return q;
7779
}
7880

81+
82+
83+
7984
/// <summary>
8085
/// Calculating Euler Angles form Quaternion...
8186
/// </summary>

AttitudeIndicator/ViewModels/ApplicationViewModel.cs

+3-8
Original file line numberDiff line numberDiff line change
@@ -76,20 +76,15 @@ void RotationToEulerAngles()
7676
/// Conversion of Euler angles to quaternion
7777
/// </summary>
7878
void EulerAnglesToRotation()
79-
{
80-
79+
{
8180
if (this.ProcessDirection != TransformDirection.None)
8281
return;
8382

8483
this.ProcessDirection = TransformDirection.EulerToQuaternion;
8584

86-
var q = new Quaternion(new Vector3D(0, 0, 1), Psi);
87-
q *= new Quaternion(new Vector3D(0, 1, 0), Theta);
88-
q *= new Quaternion(new Vector3D(1, 0, 0), Phi);
89-
90-
this.Rotation = q;
85+
this.Rotation = TransformationHelper.UnitQuaternionFromEulerAngles(Psi, Theta, Phi);
9186
var mat = new Matrix3D();
92-
mat.Rotate(q);
87+
mat.Rotate(this.Rotation);
9388
this.AirPlaneMatrixTransform = mat;
9489

9590
this.ProcessDirection = TransformDirection.None;

0 commit comments

Comments
 (0)