This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(ns user | |
(:require [quil.core :as q] | |
[flow-storm.api :as fsa])) | |
(defn setup [] | |
(q/frame-rate 1) ;; Set framerate to 1 FPS | |
(q/background 200) | |
(fsa/bookmark "Quil setup function complete")) ;; Set the background colour | |
(defn make-ellipse [x y diam] |