Answers for "how to draw an object in pygame"

17

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)
Posted by: Guest on July-05-2020
1

pygame how to draw a rectangle

pygame.draw.rect(DISPLAY,BLUE,(200,150,100,50))
Posted by: Guest on September-04-2020
0

how to draw in pygame

# To draw a rect
pygame.draw.rect(screen, color, (x, y, width, height))
Posted by: Guest on August-13-2021

Python Answers by Framework

Browse Popular Code Answers by Language