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;
        }