Abacus.DoublePrecision.Vector4Tests.TestOperator_Negation_i C# (CSharp) Method

TestOperator_Negation_i() private method

private TestOperator_Negation_i ( ) : void
return void
        public void TestOperator_Negation_i ()
        {
            Double r = 3432;
            Double s = -6218;
            Double t = -3432;
            Double u = 6218;

            var a = new Vector4(r, s, t, u);
            var b = new Vector4(u, t, s, r);
            var c = new Vector4(t, u, r, s);
            var d = new Vector4(s, r, u, t);

            this.TestNegation(a, c);
            this.TestNegation(b, d);
        }
Vector4Tests