-
Notifications
You must be signed in to change notification settings - Fork 3
/
bresenham
30 lines (25 loc) · 1.01 KB
/
bresenham
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
# -*-coding utf-8-*-
import sys
import pygame
import time
import função
pygame.init() # inicialização do pygame
window = pygame.display.set_mode((500, 500)) # cria uma janela
pygame.display.set_caption("Teste do bresenham") # Altera o nome da janela
controle = 1
while True:
for event in pygame.event.get(): # um loop para checar se os eventos estão ocorrendo exemplo mouse,click,teclar
if event.type == pygame.QUIT: # quando clica no x da janela ele para o jogo
pygame.quit()
sys.exit()
if event.type == pygame.MOUSEBUTTONDOWN:
if event.button == 1: # botao esquerdo do mouse clicado
if controle == 1:
x1, y1 = pygame.mouse.get_pos()
controle += 1
elif controle == 2:
x2, y2 = pygame.mouse.get_pos()
controle = 1
função.bresenham_completo(window,x1,y1,x2,y2)
time.sleep(0.03)
pygame.display.update() # refresh da janela