Change to the Normalized Pixel Percentage Formula

This commit is contained in:
2022-09-22 23:39:58 -07:00
parent 192d2ad776
commit fb1c68e1f5
27 changed files with 426 additions and 451 deletions

View File

@ -3,7 +3,7 @@
public interface ILocation
{
const int Digits = 6;
const int Factor = 1000000;
const int Digits = 9;
const int Factor = 10000;
}