mirror of https://github.com/adamdruppe/arsd.git
Fix nearest neighbor algorithm
This commit is contained in:
parent
68a94f03c3
commit
9899b48f16
|
@ -2973,10 +2973,8 @@ private void scaleToImpl(ScalingFilter filter)(const Pixmap source, Pixmap targe
|
||||||
|
|
||||||
Point translate(const Point dstPos) {
|
Point translate(const Point dstPos) {
|
||||||
pragma(inline, true);
|
pragma(inline, true);
|
||||||
const xCandidate = (() @trusted => (dstPos.x * ratios.ptr[0]).round().castTo!int)();
|
const x = (dstPos.x * ratios[0]).floor().castTo!int;
|
||||||
const yCandidate = (() @trusted => (dstPos.y * ratios.ptr[1]).round().castTo!int)();
|
const y = (dstPos.y * ratios[1]).floor().castTo!int;
|
||||||
const x = min(xCandidate, sourceMaxX);
|
|
||||||
const y = min(yCandidate, sourceMaxY);
|
|
||||||
return Point(x, y);
|
return Point(x, y);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue