Skip to content

Instantly share code, notes, and snippets.

View rosejn's full-sized avatar

Jeff Rose rosejn

View GitHub Profile
@rosejn
rosejn / gist:2885724
Created June 7, 2012 00:24 — forked from samaaron/gist:2885344
Dancer with colors and motion paths
(ns examples.rotating-spheres
(:use [quil.core]))
(defn rand-circle-coords []
(let [max-x (* 2 (width))
max-y (* 2 (height))
max-z 800]
[(random (- max-x) max-x) (random (- max-y) max-y) (random (- max-z) max-z)]))
(def circle-coords