LibNoise.Generator.Voronoi.Voronoi C# (CSharp) 메소드

Voronoi() 공개 메소드

Initializes a new instance of Voronoi.
public Voronoi ( double frequency, double displacement, int seed, bool distance ) : System
frequency double The frequency of the first octave.
displacement double The displacement of the ridged-multifractal noise.
seed int The seed of the ridged-multifractal noise.
distance bool Indicates whether the distance from the nearest seed point is applied to the output value.
리턴 System
        public Voronoi(double frequency, double displacement, int seed, bool distance)
            : base(0)
        {
            Frequency = frequency;
            Displacement = displacement;
            Seed = seed;
            UseDistance = distance;
        }

Same methods

Voronoi::Voronoi ( ) : System