ronin/examples/basics/transforms.lisp
2020-03-26 11:51:35 +09:00

31 lines
363 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)