예제 #1
0
        private void CalculateGroupZoneStats(FOCommon.Worldmap.EncounterGroup.EncounterGroup Grp)
        {
            ZoneStatistics Zt = new ZoneStatistics(Grp);

            Zt.CalculateZoneStatistics(Zones);
            Grp.ZoneCount = Zt.ZoneCount;
            Grp.ZoneAvg   = Zt.ZoneDiffAvg;
            Grp.ZoneMax   = Zt.ZoneDiffMax;
            Grp.ZoneMed   = Zt.ZoneDiffMed;
            Grp.ZoneMin   = Zt.ZoneDiffMin;
        }
예제 #2
0
 private void CalculateGroupZoneStats(FOCommon.Worldmap.EncounterGroup.EncounterGroup Grp)
 {
     ZoneStatistics Zt = new ZoneStatistics(Grp);
     Zt.CalculateZoneStatistics(Zones);
     Grp.ZoneCount = Zt.ZoneCount;
     Grp.ZoneAvg = Zt.ZoneDiffAvg;
     Grp.ZoneMax = Zt.ZoneDiffMax;
     Grp.ZoneMed = Zt.ZoneDiffMed;
     Grp.ZoneMin = Zt.ZoneDiffMin;
 }