how to render a rectangle in python pygame code example
Example 1: how to make a rectangle in pygame
x_pos = 20
y_pos = 20
width = 50
height = 50
rectangle = pygame.Rect(x_pos, y_pos, width, height)
def make_rect():
pygame.draw.rect(surface, (RGB colour in this tuple), rectangle)
run = True
while run:
for event in pygame.event.get():
if event.type == pygame.QUIT:
run = False
make_rect()
pygame.display.update()
Example 2: pygame how to draw a rectangle
pygame.draw.rect(DISPLAY,BLUE,(200,150,100,50))