Collada.Math.Vector.Dot C# (CSharp) Méthode

Dot() public méthode

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