ronin/examples/basics/transforms.lisp
2019-08-03 15:40:26 +09:00

19 lines
351 B
Common Lisp

; transforms
(clear)
(transform:move 150 150)
(fill
(circle 0 0 150) theme:b_inv)
(transform:move 300 0)
(transform:rotate
(rad 90))
(fill
(circle 0 0 150) theme:b_high)
(transform:move 300 0)
(transform:rotate
(rad 90))
(fill
(circle 0 0 150) theme:b_med)
(transform:move 300 0)
(fill
(circle 0 0 150) theme:b_low)
(transform:reset)