Halftone core

Screenshot of halftone output
(defn halftone-cell
  "Dot radius for a luminance sample (0.0-1.0)."
  [luma max-r]
  (* max-r (Math/sqrt (- 1.0 luma))))
Halftone core

From tonalcode: the dot-size core of the halftone renderer.

2025-12-01 verb