Abacus.DoublePrecision.Vector3Tests.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 x = 3;
            Double y = 6;
            Double z = -9;

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

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