LibNoise.Operator.ScaleBias.GetValue C# (CSharp) Метод

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

Returns the output value for the given input coordinates.
public GetValue ( float x, float y, float z ) : float
x float The input coordinate on the x-axis.
y float The input coordinate on the y-axis.
z float The input coordinate on the z-axis.
Результат float
        public override float GetValue(float x, float y, float z)
        {
            System.Diagnostics.Debug.Assert(this.m_modules[0] != null);
            return this.m_modules[0].GetValue(x, y, z) * this.m_scale + this.m_bias;
        }