Abacus.DoublePrecision.Vector3Tests.TestStaticFn_Dot_iv C# (CSharp) 메소드

TestStaticFn_Dot_iv() 개인적인 메소드

private TestStaticFn_Dot_iv ( ) : void
리턴 void
        public void TestStaticFn_Dot_iv ()
        {
            Vector3 a = new Vector3(0, 1, 0);
            Vector3 b = new Vector3(0, 0, 1);

            Double expected = 0;
            Double result; Vector3.Dot(ref a, ref b, out result);

            Assert.That(result, Is.EqualTo(expected));
        }
Vector3Tests