WolfEngine.Vector2f.DotProduct C# (CSharp) Méthode

DotProduct() public méthode

public DotProduct ( Vector2f inputVector ) : float
inputVector Vector2f
Résultat float
        public float DotProduct(Vector2f inputVector)
        {
            return x * inputVector.x + y * inputVector.y;
        }