Exemple #1
0
        public EpicenterLayer(int influenceRadius, DigressionMethod digressionMethod, int probability, float pointPowerMin, float pointPowerMax)
        {
            this.influenceRadius = influenceRadius;

            this.digressionMethod = digressionMethod;

            this.probability = probability;

            this.pointPowerMin = pointPowerMin;

            this.pointPowerMax = pointPowerMax;

            this.InitializeGeneration();
        }
Exemple #2
0
 public EpicenterDensityLayer(int influenceRadius, DigressionMethod digressionMethod, int probability, float pointPowerMin, float pointPowerMax) :
     base(influenceRadius, digressionMethod, probability, pointPowerMin, pointPowerMax)
 {
 }
Exemple #3
0
 protected override void AddEpicenterLayer(int influenceRadius, DigressionMethod digressionMethod, int nbMaxPoints, float pointPowerMin, float pointPowerMax)
 {
     this.epicenterLayersList.Add(new EpicenterLayer(influenceRadius, digressionMethod, nbMaxPoints, pointPowerMin, pointPowerMax));
 }