paths
Attribution
Essentials - Make Games with Python, pages 5 - 17.
Licensed under Creative Commons Attribution-NonCommercial-ShareAlike 3.0 Unported.
Original Python code
import pygame
pygame.init()
window = pygame.display.set_mode( (500, 400) )
while True:
# A triangle made of lines
# pygame.draw.line(window, (255,255,255), (50, 50), (75, 75), 1)
# pygame.draw.line(window, (255,255,255), (75, 75), (25, 75), 1)
# pygame.draw.line(window, (255,255,255), (25, 75), (50, 50), 1)
# A triangle made of points
pygame.draw.lines(window, (255,255,255), True, ((50, 50), (75, 75), (25, 75)), 1)
#A pentagon
pygame.draw.lines(window, (255,255,255), True, ( (50, 50), (75, 75), (63, 100), (38, 100), (25, 75) ), 1)
pygame.display.update()