
/g,">").replace(/"/g,""").replace(/'/g,"'")}let a={},c=[];function d(e,n,l){a={...a,dynamic:e,core:n,leinProject:l}}function p(){c=["wh","with-style"]}window.onload=()=>{let{dynamic:n,core:l,leinProject:r}=a;if(n&&(document.getElementById("code-dynamic").innerHTML=s(n)),l&&(document.getElementById("code-core").innerHTML=s(l)),r&&(document.getElementById("code-lein-project").innerHTML=s(r)),c){let e={wh:';; Copyright (c) 2016 Tyler Hobbs\n;; MIT License\n;; https://github.com/thobbs/genartlib/\n(defn h\n "Returns a given percentage of the height Quil-specific."\n ([] (h 1.0))\n ([percentage] (* (height) percentage)))\n\n;; Copyright (c) 2016 Tyler Hobbs\n;; MIT License\n;; https://github.com/thobbs/genartlib/\n(defn w\n "Returns a given percentage of the width. Quil-specific."\n ([] (w 1.0))\n ([percentage] (* (width) percentage)))\n',"with-style":"(defmacro with-style [& body]\n `(do\n (q/push-style)\n (try\n ~@body\n (finally (q/pop-style)))))\n"},n=c.map(n=>e[n]).join("\n");document.getElementById("code-helpers").innerHTML=s(n)}e(t).addPlugin((0,i.number)()),e(t).highlightAll()}}),i("3PmhV",function(e,l){n(e.exports,"number",()=>r);let r=e=>({"after:highlightElement":({el:e,result:n,text:l})=>{let r=n.value.split("\n");r.pop();let t=r.length.toString().length,o=r.map((e,n)=>{let l=(n+1).toString().padStart(t);return`${e}`}).join("\n");e.innerHTML=o}})}),o("d3dEA"),o("7Y8VX");var s=o("dZ8Um");(0,s.make)('(ns sketch.dynamic\n (:require ; [clojure.java.shell :refer [sh]]\n ; [genartlib.algebra :refer :all]\n ; [genartlib.curves :refer :all]\n ; [genartlib.geometry :refer :all]\n ; [genartlib.random :refer :all]\n ; [kdtree :as kd]\n [artlib.color.dictionary :as color]\n [artlib.quil.global :refer :all]\n [genartlib.util :refer [w h]]\n [quil.core :as q]))\n\n(def color-dict (color/init))\n(def palette (->> :335\n (color/get-combination-hsb color-dict)\n (map (fn [[hue sat bri]] [hue (* sat 0.3) (* bri 0.8)]))))\n\n(defn cart \n "Cartesian product of colls."\n [colls]\n (if (empty? colls)\n \'(())\n (for [more (cart (rest colls))\n x (first colls)]\n (cons x more))))\n\n(defn subdiv-cell-v1 [{[x y] :orig [width height] :dims :as cell} n]\n (let [y-step (/ height n)\n ys (range y (+ y height -1e-5) y-step)\n ys (map-indexed vector ys)\n\n n (q/noise (* x 15) (* y 15) (rand))\n check-fn (if (< 0.5 n) odd? even?)\n\n n (q/noise (* x 15) (* y 15) (rand))\n variant (if (< 0.6 n) :fill :none)\n \n n (q/noise (* x 5) (* y 5) (rand))\n n (int (* n 20))\n color (nth (cycle palette) n)]\n (map (fn [[idx y]]\n (let [color? (and (= variant :fill) (apply check-fn [idx]))]\n {:orig [x y] :dims [width y-step] :parent cell :color color :color? color?})) ys)))\n\n(def to-draw (atom nil))\n(defn draw [state]\n (when (nil? @to-draw)\n (let [pad 0.1\n cells 15\n blocks 12\n ;; aspect 1.618 ;; golden ratio bc why not\n aspect 2.118\n cell-w (/ (- 1 pad pad) cells)\n cell-h (* aspect cell-w)\n num-cells-vert (int (/ (- 1 pad) cell-h))\n vert-dist (* num-cells-vert cell-h)\n vert-pad (/ (- 1 vert-dist) 2)\n cell-xs (range pad (- 1 pad 1e-5) cell-w)\n cell-ys (range vert-pad (+ vert-dist -1e-5) cell-h)\n cells (->> [cell-xs cell-ys]\n cart\n (map (fn [[x y]] \n (let [n (q/noise (* x 5) (* y 5) (rand))\n n (int (* n 20))\n color (nth (cycle palette) n)]\n {:orig [x y] :dims [cell-w cell-h] :color color})))) \n blocks (mapcat #(subdiv-cell-v1 % blocks) (shuffle cells))\n \n draw-stroke (fn [] (q/stroke 0 0 40 0.2))\n no-stroke (fn [] (q/no-stroke))\n cell-line-draws (mapcat \n (fn [{[x y] :orig [cell-w cell-h] :dims}]\n (let [x2 (+ x cell-w)\n y2 (+ y cell-h)]\n [\n #(q/stroke 0 0 40 0.7)\n (fn [] (q/line (w x) (h y) (w x2) (h y)))\n (fn [] (q/line (w x) (h y) (w x) (h y2)))\n (fn [] (q/line (w x) (h y2) (w x2) (h y2)))\n (fn [] (q/line (w x2) (h y) (w x2) (h y2)))\n ]))\n cells)\n cell-fill (map\n (fn [{[x y] :orig [cell-w cell-h] :dims [hue sat bri] :color}]\n (fn [] \n (q/fill hue sat bri 0.8)\n (dotimes [n 3]\n (q/rect \n (w (gauss x 0.0003)) \n (h (gauss y 0.0003)) \n (w cell-w) (h cell-h)))))\n cells)\n\n block-line-draws (map\n (fn [{[x y] :orig [cell-w cell-h] :dims}]\n (let [x2 (+ x cell-w)\n y2 (+ y cell-h)]\n (fn [] \n (dotimes [n 1]\n (q/line (w x) (h (gauss y2 0.0003)) \n (w x2) (h (gauss y2 0.0003)))))))\n (reverse blocks))\n block-fill (->> blocks\n (filter #(:color? %))\n shuffle\n (map\n (fn [{[x y] :orig [cell-w cell-h] :dims [hue sat bri] :color}]\n (fn [] \n (q/fill hue sat bri 0.8)\n (q/rect (w x) (h y) (w cell-w) (h cell-h))))))\n\n setup-for-dirt #(q/no-stroke)\n add-dirt (repeat 10 (fn [] \n (q/fill (rand 360) (rand 15) 50 0.01)\n (dotimes [n 500] \n (q/ellipse (w (rand)) (h (rand)) (w (gauss 0.01 0.01)) (h (gauss 0.01 0.01))))))\n setup-for-scuffs #(q/stroke 0 0 40 0.02)\n add-scuffs (repeat 10 (fn []\n (dotimes [n 100] \n (apply q/line (repeatedly 4 #(w (- (rand 1.4) 0.2)))))))\n ops (concat \n [setup-for-dirt] add-dirt\n [setup-for-scuffs] add-scuffs\n\n [draw-stroke] cell-line-draws \n [setup-for-dirt] add-dirt\n [setup-for-scuffs] add-scuffs\n\n [no-stroke] cell-fill \n [setup-for-dirt] add-dirt\n [setup-for-scuffs] add-scuffs\n\n [draw-stroke] block-line-draws\n [setup-for-dirt] add-dirt\n [setup-for-scuffs] add-scuffs\n\n [no-stroke] block-fill\n [setup-for-dirt] add-dirt\n [setup-for-scuffs] add-scuffs\n )]\n (println "made new drawing")\n (reset! to-draw {:cells cells :blocks blocks :ops ops})))\n\n\n (let [frame (:frame state)\n f (/ frame 300)\n {cells :cells blocks :blocks ops :ops} @to-draw\n num-draw-ops (count ops);; num blocks to fill\n\n ops-per-frame (/ num-draw-ops 250)\n op-lower-idx (Math/floor (* ops-per-frame frame))\n op-upper-idx (Math/ceil (+ op-lower-idx ops-per-frame))\n op-upper-idx (min op-upper-idx num-draw-ops)]\n\n (when (zero? frame)\n (q/background 50 9 90))\n (when (>= frame 300)\n (reset! to-draw nil))\n\n (q/stroke-weight (w 0.001))\n (doseq [idx (range op-lower-idx op-upper-idx)]\n (apply (nth ops idx) []))\n\n #_(with-style\n (q/stroke 0 0 0)\n (doseq [{[x y] :orig [width height] :dims color :color} cells]\n (with-style\n (apply q/fill color)\n (q/rect (w x) (h y) (w width) (h height)))))\n\n #_(doseq [{[x y] :orig [width height] :dims color :color} blocks]\n (with-style\n (q/no-stroke)\n (apply q/fill color)\n (q/rect (w x) (h y) (w width) (h height))))\n\n ))\n\n','(ns sketch.core\n (:require [artlib.quil.middleware :refer [animation-mode]]\n [clojure.core.matrix :refer [set-current-implementation]]\n [quil.middleware :as qm]\n [sketch.dynamic :as dynamic]\n [quil.core :as q]))\n\n(set-current-implementation :vectorz)\n(println)\n\n(q/defsketch example\n :title "genuary-2024-11"\n :setup (fn [] {})\n :draw dynamic/draw\n :update identity\n :size [1080 1080]\n :animation {:render? true :dirname "2"}\n :middleware [qm/fun-mode animation-mode])\n\n','(defproject genuary-2024-11 "0.1.0-SNAPSHOT"\n :description "FIXME: write description"\n :url "https://example.com/FIXME"\n :license {:name "Apache License, Version 2.0"\n :url "https://www.apache.org/licenses/LICENSE-2.0.html"}\n :dependencies [[org.clojure/clojure "1.11.1"]\n [com.dedovic/artlib-core "0.0.10"]\n [genartlib/genartlib "1.0.0"]] ; utility functions\n :jvm-opts ["-Xms4000m" "-Xmx4000M" ; 4GB heap size\n "-server"\n "-Dsun.java2d.uiScale=1.0"] ; adjust scaling for high DPI displays\n :source-paths ["src/clj"]\n :java-source-paths ["src/java"]\n :resource-paths ["resources"])\n'),(0,s.withDefaultHelpers)();
dynamic.clj
core.clj
helpers
project.clj