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

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

public SetAllSourceTypes ( BasisType newBasisType, InterpolationType newInterpolationType ) : void
newBasisType BasisType
newInterpolationType InterpolationType
Результат void
        public void SetAllSourceTypes(BasisType newBasisType, InterpolationType newInterpolationType)
        {
            for (var i = 0; i < Noise.MAX_SOURCES; ++i)
            {
                this.basisFunctions[i] = new ImplicitBasisFunction(newBasisType, newInterpolationType, Seed);
            }
        }