From 1aae3674dcc2acfa9f12ba0c9485431d2547de29 Mon Sep 17 00:00:00 2001 From: Elias Batek Date: Sun, 26 May 2024 15:07:11 +0200 Subject: [PATCH] Improve documentation --- pixmappaint.d | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/pixmappaint.d b/pixmappaint.d index aba8e9a..ee79997 100644 --- a/pixmappaint.d +++ b/pixmappaint.d @@ -291,7 +291,9 @@ private { } /++ - Integer square root + Calculates the square root + of an integer number + as an integer number. +/ ubyte intSqrt(const ubyte value) @safe pure nothrow @nogc { switch (value) { @@ -353,7 +355,9 @@ unittest { } /++ - Square root of a normalized integer + Calculates the square root + of the normalized value + representated by the input integer number. Normalization: `[0x00 .. 0xFF]` → `[0.0 .. 1.0]`