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

TestOperator_Multiplication_i() private method

private TestOperator_Multiplication_i ( ) : void
return void
        public void TestOperator_Multiplication_i ()
        {
            Double r = -27;
            Double s = 36;
            Double t = 9;
            Double u = -54;

            Double x = 3;
            Double y = 6;
            Double z = -9;

            var a = new Vector4(x, y, x, y);
            var b = new Vector4(z, y, x, z);
            var c = new Vector4(r, s, t, u);

            this.TestMultiplication(a, b, c);
        }
Vector4Tests