from cs1graphics import * w = 1000 # adjust to get different scale paper=Canvas(w, int(.6*w)) paper.setBackgroundColor('lightgray') body = Rectangle(.4*w, .2*w) body.setFillColor('white') body.move(.5*w, .4*w) body.setBorderWidth(.01*w) paper.add(body) head = Circle(.1*w) head.setFillColor('brown') head.setBorderWidth(max(1,w/500)) # not quite clear how this should be scaled head.move(.7*w, .3*w) paper.add(head)