public void TestAverageAround180() { Assert.AreEqual(180, AngleMath.Average(new float[] { 180, 181, 182, 183, 184, 185, 179, 178, 177, 176, 175 })); }
public void TestAverage() { Assert.AreEqual(5f, AngleMath.Average(new[] { 350f, 20f }), 0.0001); }