longing release

I made this piece as part of the “Concentrated Creativity” BASB alumni sprint. It is a piece of generative art made with the Clojure programming language and the Quil and genartlib libraries. The base code is inspired by the Golden Ratio Flower by Jack Rusher. The part of my code that actually draws the above is: (def palette (cycle [[326 100 61] [0 0 0] [0 0 100]])) (def PHI (/ (+ 1 (Math/sqrt 5)) 2)) (defn gauss [mean variance] (+ mean (* variance (q/random-gaussian)))) (defn actual-draw [] ; art goes here (q/frame-rate 10) (q/no-stroke) (q/background 0 0 60) (q/with-translation [(w 0....

May 28, 2022 · 2 min · jay l. colbert