From 9899b48f16219b0bd7b4eeb343f0fc537c0ae0ed Mon Sep 17 00:00:00 2001 From: Elias Batek Date: Tue, 28 Jan 2025 02:02:09 +0100 Subject: [PATCH] Fix nearest neighbor algorithm --- pixmappaint.d | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/pixmappaint.d b/pixmappaint.d index 1dd5b0f..48ac5e8 100644 --- a/pixmappaint.d +++ b/pixmappaint.d @@ -2973,10 +2973,8 @@ private void scaleToImpl(ScalingFilter filter)(const Pixmap source, Pixmap targe Point translate(const Point dstPos) { pragma(inline, true); - const xCandidate = (() @trusted => (dstPos.x * ratios.ptr[0]).round().castTo!int)(); - const yCandidate = (() @trusted => (dstPos.y * ratios.ptr[1]).round().castTo!int)(); - const x = min(xCandidate, sourceMaxX); - const y = min(yCandidate, sourceMaxY); + const x = (dstPos.x * ratios[0]).floor().castTo!int; + const y = (dstPos.y * ratios[1]).floor().castTo!int; return Point(x, y); }