applyAr static method
Applies the satellite aspect-ratio multiplier after the base formula
(1 + k·lnAR, default sensitivity when k is null).
Implementation
static double applyAr(
double value, DimenMetrics m, bool applyAspectRatio, double? k) {
if (!applyAspectRatio) return value;
return value * m.aspectRatioMultiplier(k);
}