Quadratic.getValueFor C# (CSharp) Method

getValueFor() public method

public getValueFor ( float x ) : float
x float
return float
    public float getValueFor(float x)
    {
        return a*x*x + b*x + c;
    }