Exemple #1
0
 public WorleyNoise(int seed, double frequency, double jitter, double amplitude = 1.0)
     : base(seed, frequency, amplitude)
 {
     Jitter      = jitter;
     Distance    = VORONOI_DISTANCE.EUCLIDIAN;
     Combination = VORONOI_COMBINATION.D1_D0;
 }
Exemple #2
0
 public VoronoiNoise(int seed, double frequency, double amplitude = 1.0)
     : base(seed, frequency, amplitude)
 {
     Distance    = VORONOI_DISTANCE.EUCLIDIAN;
     Combination = VORONOI_COMBINATION.D1_D0;
 }