draw line pygame code example

Example 1: pygame draw line

pygame.draw.line(SURFACE, COLOR, START_POS, END_POS, WIDTH)

Example 2: pygame draw circle

window = pygame.display.set_mode(300, 300)
colour = (0,0,255) #green
circle_x_&_y = (150, 50)
circle_radius = 12
border_width = 0 #0 = filled circle

pygame.draw.circle(window, colour, circle_x_&_y, circle_radius, border_width)

Example 3: pygame circle

circle(surface, color, center, radius)

Example 4: draw a line pygame

pygame.draw.line(surface, color, start_pos, end_pos, width)

Example 5: pygame how to draw a rectangle

pygame.draw.rect(DISPLAY,BLUE,(200,150,100,50))

Tags:

Misc Example