ronin/examples/basics/transforms.lisp
Devine Lu Linvega ceb2bd0c3b *
2019-08-02 20:43:43 +09:00

19 lines
337 B
Common Lisp

; transforms
(clear)
(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)