Collada.Math.Vector.Dot C# (CSharp) Method

Dot() public method

public Dot ( Vector vector ) : double
vector Vector
return double
        public double Dot(Vector vector)
        {
            return this.X * vector.X +
                   this.Y * vector.Y +
                   this.Z * vector.Z +
                   this.W * vector.W;
        }