Skip to content

Commit

Permalink
updated test for Rotation fix
Browse files Browse the repository at this point in the history
  • Loading branch information
cbabrunal committed Jun 17, 2016
1 parent c3c7c11 commit fcc50ec
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions HiVRClient.Test/Model/DrawableModel/DrawableFactoryTest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -187,8 +187,8 @@ public void TestGetPatient()
Assert.That(res.Position.Z, Is.EqualTo(Patient.DefaultPosition.Z + this.vector.Z));

Assert.That(res.Rotation.X, Is.EqualTo(Patient.DefaultRotation.X));
Assert.That(res.Rotation.Y, Is.EqualTo(Patient.DefaultRotation.Y + this.vector.Y));
Assert.That(res.Rotation.Z, Is.EqualTo(Patient.DefaultRotation.Z + this.vector.Z));
Assert.That(res.Rotation.Y, Is.EqualTo(-(Patient.DefaultRotation.Y + this.vector.Y)));
Assert.That(res.Rotation.Z, Is.EqualTo(-(Patient.DefaultRotation.Z + this.vector.Z)));

Assert.That(res.Scale.X, Is.EqualTo(0D));
Assert.That(res.Scale.Y, Is.EqualTo(Patient.DefaultScale.Y));
Expand Down

0 comments on commit fcc50ec

Please sign in to comment.