
/g,">").replace(/"/g,""").replace(/'/g,"'")}let s={},o=[];function y(e,n,r){s={...s,dynamic:e,core:n,leinProject:r}}function x(){o=["wh","with-style"]}window.onload=()=>{let{dynamic:n,core:r,leinProject:t}=s;if(n&&(document.getElementById("code-dynamic").innerHTML=c(n)),r&&(document.getElementById("code-core").innerHTML=c(r)),t&&(document.getElementById("code-lein-project").innerHTML=c(t)),o){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=o.map(n=>e[n]).join("\n");document.getElementById("code-helpers").innerHTML=c(n)}e(a).addPlugin((0,l.number)()),e(a).highlightAll()}}),l("3PmhV",function(e,r){n(e.exports,"number",()=>t);let t=e=>({"after:highlightElement":({el:e,result:n,text:r})=>{let t=n.value.split("\n");t.pop();let a=t.length.toString().length,i=t.map((e,n)=>{let r=(n+1).toString().padStart(a);return`${e}`}).join("\n");e.innerHTML=i}})}),i("d3dEA"),i("7Y8VX");var c=i("dZ8Um");(0,c.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.quil.global :refer :all]\n [genartlib.util :refer [w h]]\n [quil.core :as q]))\n\n(defn get-center [x1 y1 x2 y2]\n [(/ (+ x1 x2) 2) (/ (+ y1 y2) 2)])\n\n(defn draw-boxshadow \n ([x1 y1 x2 y2]\n (draw-boxshadow x1 y1 x2 y2 2))\n ([x1 y1 x2 y2 rot]\n (with-style\n (q/fill 0 0 0)\n (q/begin-shape)\n (let [[xc yc] (get-center x1 y1 x2 y2)\n rot? (inc (mod (dec rot) 2))]\n (if (odd? rot) \n (do\n (q/vertex (w x1) (h y2))\n (q/vertex (w x1) (h yc))\n (q/vertex (w xc) (h y1))\n (q/vertex (w x2) (h y1))\n (q/vertex (w x2) (h yc))\n (q/vertex (w xc) (h y2)))\n (do \n (q/vertex (w x1) (h y1))\n (q/vertex (w x1) (h yc))\n (q/vertex (w xc) (h y2))\n (q/vertex (w x2) (h y2))\n (q/vertex (w x2) (h yc))\n (q/vertex (w xc) (h y1)))))\n (q/end-shape))))\n\n(defn draw-quarter-square \n ([x1 y1 x2 y2] \n (draw-quarter-square x1 y1 x2 y2 2))\n ([x1 y1 x2 y2 quadrant]\n (q/begin-shape)\n (let [[xc yc] (get-center x1 y1 x2 y2)\n quadrant (inc (mod (dec quadrant) 4))\n x-shift? (or (= quadrant 2) (= quadrant 3))\n y-shift? (or (= quadrant 3) (= quadrant 4))\n [xa xb] (if x-shift? [x1 xc] [xc x2])\n [ya yb] (if y-shift? [yc y2] [y1 yc])]\n (q/vertex (w xa) (h ya))\n (q/vertex (w xb) (h ya))\n (q/vertex (w xb) (h yb))\n (q/vertex (w xa) (h yb)))\n (q/end-shape)))\n\n(defn draw-circle \n ([x1 y1 x2 y2]\n (draw-circle x1 y1 x2 y2 3 5))\n ([x1 y1 x2 y2 scale location]\n (let [[xc yc] (get-center x1 y1 x2 y2)\n [xq yq] [(/ (- xc x1) 2) (/ (- yc y1) 2)]\n r (* (- xc x1) 2)\n scale (inc (mod (dec scale) 3))\n r (* r (/ 1 scale))\n locations [[xc yc]\n [(+ xc xq) (+ y1 yq)]\n [(+ x1 xq) (+ y1 yq)]\n [(+ x1 xq) (+ yc yq)]\n [(+ xc xq) (+ yc yq)]]\n [xc yc] (nth (cycle locations) location)]\n (q/ellipse (w xc) (h yc) (w r) (h r)))))\n\n(defn draw-quarter-circle\n ([x1 y1 x2 y2]\n (draw-quarter-circle x1 y1 x2 y2 1 1))\n ([x1 y1 x2 y2 scale corner]\n (let [r (- x2 x1)\n r (* r (/ 1 scale))\n corners [[x2 y1 2] ;; defined as x, y, 1/2 of PI\n [x1 y1 3]\n [x1 y2 0]\n [x2 y2 1]]\n [x y q] (nth (cycle corners) corner)\n theta0 (* q 1/2 Math/PI)]\n (q/begin-shape)\n (q/vertex (w x) (h y))\n (doseq [theta (range theta0 (+ theta0 (* Math/PI 1/2) 1e-5) (/ Math/PI 30))]\n (q/vertex \n (w (+ x (* r (Math/cos theta)))) \n (h (- y (* r (Math/sin theta))))))\n (q/end-shape))))\n\n(defn draw [state]\n (q/background 0 0 100)\n\n (let [frame (:frame state)\n f (/ frame 300)\n\n pad 0.03\n draw-s (- 1 pad pad)\n num-rows 5\n xs (partition 2 1 (range pad (- 1 pad -1e-8) (/ draw-s num-rows)))\n ys (partition 2 1 (range pad (- 1 pad -1e-8) (/ draw-s num-rows)))\n \n orange [10 80 90]\n red [0 80 90]\n blue [210 60 80]\n gold [33 75 90]\n pink [353 55 80]\n purple [293 65 80]\n colors [orange red blue gold red blue red pink purple]\n black [0 0 0]\n bg [35 30 95]]\n\n\n ;; background\n (let [x1 (first (first xs))\n x2 (last (last xs))\n y1 (first (first ys))\n y2 (last (last ys))]\n (with-style\n (apply q/fill bg)\n (q/begin-shape)\n (q/vertex (w x1) (h y1))\n (q/vertex (w x2) (h y1))\n (q/vertex (w x2) (h y2))\n (q/vertex (w x1) (h y2))\n (q/end-shape)))\n\n (q/rect-mode :corners)\n (q/no-stroke)\n (doseq [[x1 x2] xs]\n (doseq [[y1 y2] ys]\n (let [n (int (* 10 (q/noise (* x1 5) (* y1 5) (* f 2))))\n n2 (int (* 10 (q/noise (* x1 3) (* y1 3) (* f 2))))\n n3 (int (* 20 (q/noise (* x1 7) (* y1 1) (* f 1))))]\n #_(when (> 10 n3)\n (with-style\n (q/fill 0 0 0)\n (q/rect (w x1) (h y1) (w x2) (h y2))))\n (when (> n 3)\n (let [q (int (* 10 (q/noise (* y1 0) (* x1 2) (* f 3))))\n q2 (mod q 2)\n q3 (int (* 10 (q/noise (* y1 2) (* x1 1) (* f 3))))]\n (draw-boxshadow x1 y1 x2 y2 q2)\n (with-style\n (apply q/fill (first (drop q3 (cycle colors))))\n (draw-quarter-square x1 y1 x2 y2 q))))\n (when (and (= 4 n) (> 4 n2))\n (with-style\n (apply q/fill bg)\n (draw-circle x1 y1 x2 y2 0 n3)))\n (when (< n 3)\n (let [q (inc (int (* 10 (q/noise (* y1 2) (* x1 2) (* f 3)))))\n q2 1\n q3 (if (= 1 q2) 0 (inc (int q)))]\n (with-style\n (apply q/fill black)\n (draw-circle x1 y1 x2 y2 q2 q3)\n (apply q/fill bg)\n (draw-circle x1 y1 x2 y2 (inc q2) q3)))))))))\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-18"\n :setup (fn [] {})\n :draw dynamic/draw\n :update identity\n :size [1080 1080]\n :animation {:render? true :dirname "1"}\n :middleware [qm/fun-mode animation-mode])\n\n','(defproject genuary-2024-18 "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 [com.dedovic/easings-clj "0.1.0"]\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,c.withDefaultHelpers)();
dynamic.clj
core.clj
helpers
project.clj