LibNoise.Operator.ScaleBias.ScaleBias C# (CSharp) Method

ScaleBias() public method

Initializes a new instance of ScaleBias.
public ScaleBias ( float scale, float bias, ModuleBase input ) : System
scale float The scaling factor to apply to the output value from the source module.
bias float The bias to apply to the scaled output value from the source module.
input ModuleBase The input module.
return System
        public ScaleBias(float scale, float bias, ModuleBase input)
            : base(1)
        {
            this.m_modules[0] = input;
            this.Bias = bias;
            this.Scale = scale;
        }

Same methods

ScaleBias::ScaleBias ( ) : System