ronin/examples/basics/transforms.lisp
2019-08-02 20:33:19 +09:00

21 lines
356 B
Common Lisp

; transforms
(clear)
(def f
(frame))
(transform:move 150 150)
(fill
(circle 0 0 150) "#ffb545")
(transform:move 300 0)
(transform:rotate
(rad 90))
(fill
(circle 0 0 150) "white")
(transform:move 300 0)
(transform:rotate
(rad 90))
(fill
(circle 0 0 150) "#72dec2")
(transform:move 300 0)
(fill
(circle 0 0 150) "#555")
(transform:reset)