Saltar al contenido

pygame dibuja un ejemplo de código de rectángulo

Ejemplo 1: como hacer un rectángulo en pygame

# make the x position, y position, width and the height of the rectangle
x_pos = 20
y_pos = 20
width = 50
height = 50

# make the rectangle variable
rectangle = pygame.Rect(x_pos, y_pos, width, height)

# now add this to a surface, add a colour and the rectangle and make it a function
def make_rect():
	pygame.draw.rect(surface, (RGB colour in this tuple), rectangle)


# after this add it to your infinite loop
run = True
while run:
    for event in pygame.event.get():
        if event.type == pygame.QUIT:
            run = False
            
	make_rect()
    pygame.display.update()

Ejemplo 2: pygame draw rect

import pygame, sys
from pygame.locals import *

def main():
    pygame.init()

    DISPLAY=pygame.display.set_mode((500,400),0,32)

    WHITE=(255,255,255)
    BLUE=(0,0,255)

    DISPLAY.fill(WHITE)

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

    while True:
        for event in pygame.event.get():
            if event.type==QUIT:
                pygame.quit()
                sys.exit()
        pygame.display.update()

main()

Ejemplo 3: sintaxis de dibujar rect de pygame

pygame.draw.rect(SURFACE, RGB_COLOR, (X, Y, WIDTH, HEIGHT))

Ejemplo 4: pygame.draw.rect

pygame.draw.rect(surface, color, rect)

Ejemplo 5: pygame cómo dibujar un rectángulo

pygame.draw.rect(DISPLAY,BLUE,(200,150,100,50))
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)



Utiliza Nuestro Buscador

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *