개발자입니다
[유튜브 소놀코딩] 3강.선, 도형 그리기 본문
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()

'파이게임 > 파이썬 게임 만들기 강의(유튜브 소놀코딩)' 카테고리의 다른 글
[유튜브 소놀코딩] 8강.캐릭터 충돌하기 / 9강.점수 만들기 / 10강.게임 종료하기 (0) | 2023.08.31 |
---|---|
[유튜브 소놀코딩] 6강.벽에 닿았을 때 튕기기 / 7강.캐릭터 추가하기 (0) | 2023.08.31 |
[유튜브 소놀코딩] 4강.이미지 사용하기 / 5강.키보드+마우스+이미지 적용하기 (0) | 2023.08.31 |
[유튜브 소놀코딩] 2강.마우스로 조종하기 (0) | 2023.08.30 |
[유튜브 소놀코딩] 1강.키보드로 조종하기 (0) | 2023.08.29 |