Exemplo n.º 1
0
        public void TestNoWrap()
        {
            var result = AircraftPositionStructOperator.InterpolateWrap(0.1, 0.6, 0.5, 0, 1);

            Assert.IsTrue(Math.Abs(result - 0.35) < Epsilon);
        }
Exemplo n.º 2
0
        public void TestWrapToFront()
        {
            var result = AircraftPositionStructOperator.InterpolateWrap(0.1, 0.9, 0.5, 0, 1);

            Assert.IsTrue(result < Epsilon);
        }