lmimmfn wrote:
Ommis wrote:
Second value - 64, is size for marker and some ui elements.
Proper value should be calculated by formula:
64 * ((width/height)/1.77777)
For example, 64 * ((5760/1080)/1.77777) = 192.008392
So, 64 should be changed to 192.008392
Thanks for that, i think your formula is wrong though, the markers were tiny with the above formula with 3440x1440, instead i changed it around and this works:
( 64 * (3440/1440) )/1.77777 = 86
The "formula" is correct but yes, you have to change the numbers for your actual resolution.
Eks:
3840x1620:
64*((3840/1620)/1.77777)) = 85.3337066
2560x1080:
64*((2560/1080)/1.77777)) = 85.3337066
3440x1440:
64*((3440/1440)/1.77777)) = 86.00037625
5760x1080:
64*((5760/1080)/1.77777)) = 192.00084
As we can see, the reason why some marker fixes work for several resolutions, is because the ratio is the same.