단순한 얼굴

4338 단어 pythonprogramming
John Zelle이 만든 그래픽 모듈을 이용하여 간단한 얼굴을 그리는 간단한 프로그램입니다.

# simple_face.py
#   Drawing of a simple face
# by: Scott Gordon

from graphics import *


def main():
    win = GraphWin("Face", 300, 300)
    win.setCoords(-3, -3, 3, 3)
    win.setBackground("white")
    center = Point(0, 0)

    head = Circle(center, 2)
    head.setFill("yellow")
    head.draw(win)

    eye = Circle(Point(-1, .50), .25)
    eye.setFill("black")
    eye.draw(win)

    eye2 = eye.clone()
    eye2.move(2,0)
    eye2.draw(win)

    mouth = Line(Point(-1, -.5), Point(1, -.5))
    mouth.setWidth(7)
    mouth.draw(win)

    win.getMouse()
    win.close()

main()

좋은 웹페이지 즐겨찾기