Tech이야기~!
welcom 자세히보기

Computer/Python

어몽어스 캐릭터를 파이썬으로 그려보자

Enhold 2020. 10. 14. 10:36

어몽어스 캐릭터를 파이썬으로 그려보자

among_us.py
0.00MB

 

turtle 모들 인스톨 하기

pip install turtle

On our command prompt/terminal/cmd.

It will take some seconds or minutes, depending on your net speed.

 

turtle  모듈을 가져 오는 것으로 시작합니다. 조금 기본-거북이는 펜과 같습니다. 앞으로 얼마나 더 앞뒤로 이동할지, 어떤 각도 ()로 어느 방향으로 (왼쪽, 오른쪽) 회전할지 제어 할 수 있습니다. 또한 색상을 채우고, 속도를 변경하고, 원하는 방식으로 원 또는 원의 일부를 만들 수 있습니다.

import turtle

BODY_COLOR =  'skyblue'
BODY_SHADOW = ''
GLASS_COLOR = '#9acedc'
GLASS_SHADOW = ''

s = turtle.getscreen()
t = turtle.Turtle()
# it can move forward backward left right
def body():
    """ draws the body """
    t.pensize(20)
    #t.speed(15)

    t.fillcolor(BODY_COLOR)
    t.begin_fill()

    # right side
    t.right(90)
    t.forward(50)
    t.right(180)
    t.circle(40, -180)
    t.right(180)
    t.forward(200)

    # head curve
    t.right(180)
    t.circle(100, -180)

    # left side
    t.backward(20)
    t.left(15)
    t.circle(500, -20)
    t.backward(20)

    #t.backward(200)
    t.circle(40, -180)
    #t.right(90)
    t.left(7)
    t.backward(50)

    # hip
    t.up()
    t.left(90)
    t.forward(10)
    t.right(90)
    t.down()
    #t.right(180)
    #t.circle(25, -180)
    t.right(240)
    t.circle(50, -70)

    t.end_fill()
def glass():
    t.up()
    #t.right(180)
    t.right(230)
    t.forward(100)
    t.left(90)
    t.forward(20)
    t.right(90)

    t.down()
    t.fillcolor(GLASS_COLOR)
    t.begin_fill()

    t.right(150)
    t.circle(90, -55)

    t.right(180)
    t.forward(1)
    t.right(180)
    t.circle(10, -65)
    t.right(180)
    t.forward(110)
    t.right(180)
    
    #t.right(180)
    t.circle(50, -190)
    t.right(170)
    t.forward(80)

    t.right(180)
    t.circle(45, -30)

    t.end_fill()
def backpack():
    t.up()
    t.right(60)
    t.forward(100)
    t.right(90)
    t.forward(75)

    t.fillcolor(BODY_COLOR)
    t.begin_fill()

    t.down()
    t.forward(30)
    t.right(255)

    t.circle(300, -30)
    t.right(260)
    t.forward(30)

    t.end_fill()


body()
glass()
backpack()

t.screen.exitonclick()