AccidentalNoise.ImplicitSelect.ImplicitSelect C# (CSharp) Метод

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

public ImplicitSelect ( ImplicitModuleBase source, ImplicitModuleBase low, ImplicitModuleBase high, Double falloff, Double threshold ) : System
source ImplicitModuleBase
low ImplicitModuleBase
high ImplicitModuleBase
falloff Double
threshold Double
Результат System
        public ImplicitSelect(ImplicitModuleBase source, ImplicitModuleBase low, ImplicitModuleBase high, Double falloff, Double threshold)
        {
            this.Source = source;
            this.Low = low;
            this.High = high;
            this.Falloff = new ImplicitConstant(falloff);
            this.Threshold = new ImplicitConstant(threshold);
        }
ImplicitSelect