about summary refs log tree commit diff stats
path: root/js
diff options
context:
space:
mode:
authorelioat <elioat@tilde.institute>2025-03-30 15:58:11 -0400
committerelioat <elioat@tilde.institute>2025-03-30 15:58:11 -0400
commit179731fbb69e1d45073be7f380c34ebb869020cd (patch)
tree8e7f644cd2cf61d0f7c0812ad2cda15779b1bb33 /js
parentaf8c60d4628334d1801c549a7d80de8e16504fd2 (diff)
downloadtour-179731fbb69e1d45073be7f380c34ebb869020cd.tar.gz
*
Diffstat (limited to 'js')
-rw-r--r--js/leibovitz/dither.js7
1 files changed, 7 insertions, 0 deletions
diff --git a/js/leibovitz/dither.js b/js/leibovitz/dither.js
index 3689354..b011eca 100644
--- a/js/leibovitz/dither.js
+++ b/js/leibovitz/dither.js
@@ -3,6 +3,13 @@
  * Uses the Observer pattern for state management and effect application
  * Implements block-based processing for performance optimization
  * Uses the Strategy pattern for algorithm selection
+ * 
+ * Each color channel (Red, Green, Blue) has 4 possible values:
+ * 0   -> Black/None
+ * 85  -> Low
+ * 170 -> Medium
+ * 255 -> Full
+ * 
  */
 
 const DitherManager = {