From 8aaaa2a3c2bfa78db11c91bedac88e18c7cedf78 Mon Sep 17 00:00:00 2001 From: Elias Batek Date: Mon, 7 Oct 2024 04:50:28 +0200 Subject: [PATCH] =?UTF-8?q?Implement=20180=C2=B0=20rotation=20function?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pixmappaint.d | 52 +++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 52 insertions(+) diff --git a/pixmappaint.d b/pixmappaint.d index 0b5c9ef..72c6ce0 100644 --- a/pixmappaint.d +++ b/pixmappaint.d @@ -1865,6 +1865,58 @@ Pixmap rotateClockwiseNew(const Pixmap source) { return target; } +/++ + Rotates an image by 180°. + +/ +void rotate180deg(const Pixmap source, Pixmap target) @nogc { + debug assert(source.size == target.size); + + // Technically, this is implemented as flip vertical + flip horizontal. + auto src = PixmapScanner(source); + auto dst = PixmapScannerRW(target); + + foreach (srcLine; src) { + auto dstLine = dst.back; + foreach (idxSrc, px; srcLine) { + const idxDst = (dstLine.length - (idxSrc + 1)); + dstLine[idxDst] = px; + } + dst.popBack(); + } +} + +/// ditto +Pixmap rotate180degNew(const Pixmap source) { + auto target = Pixmap(source.size); + source.rotate180deg(target); + return target; +} + +/// ditto +void rotate180degInPlace(Pixmap source) @nogc { + auto scanner = PixmapScannerRW(source); + + while (!scanner.empty) { + auto a = scanner.front; + auto b = scanner.back; + + // middle line? (odd number of lines) + if (a.ptr is b.ptr) { + break; + } + + foreach (idxSrc, ref pxA; a) { + const idxDst = (b.length - (idxSrc + 1)); + const tmp = pxA; + pxA = b[idxDst]; + b[idxDst] = tmp; + } + + scanner.popFront(); + scanner.popBack(); + } +} + /++ Flips an image horizontally.