From 539480a2fa69c47fee5321f6e52108a23abd43ee Mon Sep 17 00:00:00 2001 From: Elias Batek Date: Sat, 1 Feb 2025 05:48:58 +0100 Subject: [PATCH] Remove unnecessary array --- pixmappaint.d | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/pixmappaint.d b/pixmappaint.d index 9dd77fe..42b0d61 100644 --- a/pixmappaint.d +++ b/pixmappaint.d @@ -3125,11 +3125,6 @@ private void scaleToImpl(ScalingFilter filter)(const Pixmap source, Pixmap targe const posSrcCenterX = posDst[idxX] * ratios[idxX] + ratiosHalf[idxX]; - const UDecimal[2] posSrcCenter = [ - posSrcCenterX, - posSrcCenterY, - ]; - const int[2] posSrcX = posSrcCenterToInterpolationTargets!(directionX)( posSrcCenterX, ratiosHalf[idxX], @@ -3324,7 +3319,7 @@ private void scaleToImpl(ScalingFilter filter)(const Pixmap source, Pixmap targe const ulong[2] weightsX = () { ulong[2] result; - result[0] = (udecimalHalf + posSrcX[1] - posSrcCenter[idxX]).fractionalDigits; + result[0] = (udecimalHalf + posSrcX[1] - posSrcCenterX).fractionalDigits; result[1] = ulong(uint.max) + 1 - result[0]; return result; }();