From 247cee88d0879789e1ac5b085c0bcb0b1d48fa93 Mon Sep 17 00:00:00 2001 From: Elias Batek Date: Sat, 25 Jan 2025 04:09:03 +0100 Subject: [PATCH] Make pixel mapping examples render in visually distinguishable blocks --- pixmappaint.d | 15 ++++++++++----- 1 file changed, 10 insertions(+), 5 deletions(-) diff --git a/pixmappaint.d b/pixmappaint.d index 7eeeb26..5c101cd 100644 --- a/pixmappaint.d +++ b/pixmappaint.d @@ -21,7 +21,12 @@ In the case of this library, a “width” field is used to map a specified number of pixels to a row of an image. - ``` + + + + ### Pixel mapping + + ```text pixels := [ 0, 1, 2, 3 ] width := 2 @@ -32,7 +37,7 @@ ] ``` - ``` + ```text pixels := [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11 ] width := 3 @@ -45,7 +50,7 @@ ] ``` - ``` + ```text pixels := [ 0, 1, 2, 3, 4, 5, 6, 7 ] width := 4 @@ -132,8 +137,8 @@ prone to such errors. (Slicing of the 1D array data can actually be utilized to cut off the - bottom part of an image. Any other naiv cropping operations will run into - the aforementioned issues.) + top or bottom part of an image. Any other naiv cropping operations will run + into the aforementioned issues.)