pix 0.6
홈페이지: https://github.com/nico-robert/pix Pixie는 Nim 언어로 작성된 기능이 풍부한 2D 그래픽 라이브러리이며, pix는 Tcl/Tk에서 사용가능하게 래핑한 확장 패키지입니다. Tcl/Tk wrapper around Pixie, a full-featured 2D graphics library written in Nim.package require pix# Init 'context' with size + color.set ctx [pix::ctx::new {200 200} "white"]# Style first rectangle.pix::ctx::fillStyle $ctx "rgb(0, 0, 255)" ; # blue colorpix::ctx::fillRect $ctx..