WolfEngine.Vector2f.DotProduct C# (CSharp) Метод

DotProduct() публичный Метод

public DotProduct ( Vector2f inputVector ) : float
inputVector Vector2f
Результат float
        public float DotProduct(Vector2f inputVector)
        {
            return x * inputVector.x + y * inputVector.y;
        }