draw rect 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 circle

circle(surface, color, center, radius)

Example 3: how to make a rectangle in javascript

const canvas = document.getElementById('pong') // first make a index . html with a canvas height and width and id of pong or whatever
// and then we have to get access to our context to draw on it
const context = canvas.getContext('2d')

// then you do...

context.drawRect(20, 20, 150, 150);
context.fillStyle = '#fff' // thats white!!

Example 4: pygame how to draw a rectangle

pygame.draw.rect(DISPLAY,BLUE,(200,150,100,50))

Example 5: javascript rect

// canvas context.fillRect(x, y, width, height);
ctx.fillRect(20, 20, 150, 100);

Tags:

Html Example