ronin/examples/pixels.lisp
2019-07-15 12:22:26 +09:00

21 lines
228 B
Common Lisp

; pixels
(
(clear)
; Filter
(def filter-action
(lambda () (pixels
(rect 0 0 500 500)
saturation
0.5)
))
; Draw photo
(draw
"../../PREVIEW.jpg"
(frame)
filter-action)
)