ronin/examples/archives/glitch.lisp
Devine Lu Linvega 39b2e558bd Moving examples
2019-07-22 15:36:16 +09:00

18 lines
290 B
Common Lisp

; Glitch
(clear)
(defn glitch
(rec)
(if (gt rec 1)
(
(translate
(rect (random 400) (random 400) (random 10) (random 10))
(pos (random 400) (random 400)))
(glitch (sub rec 1)))))
(import
"../static/crystal.jpg"
(rect 0 0 400 400))
(glitch 500)