draw square pythongame 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 draw circle
window = pygame.display.set_mode(300, 300)
colour = (0,0,255)
circle_x_&_y = (150, 50)
circle_radius = 12
border_width = 0
pygame.draw.circle(window, colour, circle_x_&_y, circle_radius, border_width)