Moved face area and confidence to before sorting

This commit is contained in:
2023-02-27 20:47:35 -07:00
parent 70c9ee5781
commit 18b65b8884
4 changed files with 41 additions and 44 deletions

View File

@ -11,6 +11,6 @@ public interface IDistanceLimits
public bool RangeDaysDeltaTargetLessThenUpper { init; get; }
string GetCounts();
void AddCounts(int area, int days, int distance, int confidence);
void AddCounts(int days, int distance);
}