from piscript.PiModule import * init("circle", 50, 50) beginpage() center() scale(18) setdeg() newpath() arc(0, 0, 1, 0, 360) closepath() # fill doesn't care about closure, but stroke does # in this case it's a subtle matter fill(1, 0, 1) stroke() endpage() flush()