Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

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)
Source by www.petercollingridge.co.uk #
 
PREVIOUS NEXT
Tagged: #pygame #draw #circle
ADD COMMENT
Topic
Name
4+8 =