VixenModules.App.Curves.Curve.GetIntValue C# (CSharp) Method

GetIntValue() public method

public GetIntValue ( double x ) : int
x double
return int
        public int GetIntValue(double x)
        {
            return (int) Math.Round(GetValue(x), 0);
        }

Same methods

Curve::GetIntValue ( int x ) : int