Notice
Recent Posts
Recent Comments
Link
«   2025/04   »
1 2 3 4 5
6 7 8 9 10 11 12
13 14 15 16 17 18 19
20 21 22 23 24 25 26
27 28 29 30
Tags
more
Archives
Today
Total
관리 메뉴

개발자입니다

[유튜브 소놀코딩] 3강.선, 도형 그리기 본문

파이게임/파이썬 게임 만들기 강의(유튜브 소놀코딩)

[유튜브 소놀코딩] 3강.선, 도형 그리기

끈기JK 2023. 8. 30. 19:25

pygame09.py

선 그리기

pygame.draw.line(화면, 색, 시작 위치, 끝 위치, [선 굵기]) 로 선을 그린다.

import pygame

pygame.init()

background = pygame.display.set_mode((480, 360))
pygame.display.set_caption("SONOL")

play = True
while play:
    for event in pygame.event.get():
        if event.type == pygame.QUIT:
            play = False

        background.fill((255, 255, 255))
        # 선
        # pygame.draw.line(화면, 색, 시작 위치, 끝 위치, 선 굵기)
        # pygame.draw.line(surface, color, start_pos, end_pos)
        # pygame.draw.line(background, (0,0,0), (240,0), (240,360))
        # pygame.draw.line(background, (0,0,0), (0,180), (480,180))
        # pygame.draw.line(background, (0,0,0), (0,0), (480,360), 5)
        # pygame.draw.line(background, (0,0,0), (0,360), (480,0), 5)

        for i in range(0,480,30):
            pygame.draw.line(background, (0,0,0), (i,0), (i,360))
        for i in range(0,480,30):
            pygame.draw.line(background, (0,0,0), (0,i), (480,i))

    pygame.display.update()

pygame.quit()

 

 

 

pygame10.py

도형 그리기
  • 모든 도형은 굵기를 입력하면 색깔을 채우지 않고 테두리만 그린다.
  • 원은 중심좌표, 반지름으로 그린다.
  • 사각형에서 위치와 크기는 (사각형 좌측 위치, 사각형 상단 위치, 가로 크기, 세로 크기) 로 그린다.
  • 타원은 사각형 그리기와 입력이 유사하나 사각형에 내접한 타원을 그린다.
  • 다각형은 각 꼭지점의 좌표를 리스트나 튜플로 입력한다.
import pygame

pygame.init()

background = pygame.display.set_mode((480, 360))
pygame.display.set_caption("SONOL")

x = background.get_size()[0]//2 #240
y = background.get_size()[1]//2 #180

play = True
while play:
    for event in pygame.event.get():
        if event.type == pygame.QUIT:
            play = False

        background.fill((255, 255, 255))

        # 원
        # pygame.draw.circle(화면, 색, 중심 좌표, 반지름, 선 굵기)
        pygame.draw.circle(background, (255,0,0), (240,180), 50)
        # pygame.draw.circle(background, (255,0,0), (240,180), 50, 5)

        # 사각형
        # pygame.draw.rect(화면, 색, 위치와 크기, 선 굵기)
        pygame.draw.rect(background, (0,255,0), (240,180,100,50))
        # pygame.draw.rect(background, (0,255,0), (240,180,100,50), 5)

        # 타원
        # pygame.draw.ellipse(화면, 색, 위치와 크기, 선 굵기)
        # pygame.draw.ellipse(background, (0,0,255), (240,180,100,50))
        pygame.draw.ellipse(background, (0,0,255), (240,180,100,50), 5)

        # 다각형
        # pygame.draw.polygon(화면, 색, 점들의 위치, 선 굵기)
        # pygame.draw.polygon(background, (255,255,0), [[100,100],[0,200],[200,200]])
        # pygame.draw.polygon(background, (255,255,0), [[100,100],[0,200],[200,200]], 5)
        # pygame.draw.polygon(background, (255,255,0), ((146,0),(291,106),(236,277),(56,277),(0,106)))
        pygame.draw.polygon(background, (255,255,0), ((146,0),(291,106),(236,277),(56,277),(0,106)), 5)

        pygame.draw.line(background, (0,0,0), (x,0), (x,y*2))
        pygame.draw.line(background, (0,0,0), (0,y), (x*2,y))
        pygame.display.update()

pygame.quit()