pygame square code example

Example 1: 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 2: pygame.draw.rect()

gameDisplay = pygame.display.set_mode((width,height))
bright_blue =(0,255,255)

# draw rectangle 
pygame.draw.rect(gameDisplay, bright_blue ,(611,473,100,50))

Example 3: pygame how to draw square

#Importing the library
import pygame
  
# Initializing Pygame
pygame.init()
  
# Initializing screen
screen = pygame.display.set_mode((400,300))
  
# Initialing Color
color = (255,0,0)
  
# Drawing Rectangle
pygame.draw.rect(screen, color, pygame.Rect(30, 30, 60, 60))
pygame.display.flip()

Tags:

Misc Example