1

So, is it possible to draw an image to four points in pygame? Like this: (Image demonstration)

1 Answers1

0

From the pygame documentation

# Importing the library
import pygame

# Initializing Pygame
pygame.init()

# Initializing surface
surface = pygame.display.set_mode((400,300))

# Initialing Color
color = (255,0,0)

# Drawing Rectangle
pygame.draw.rect(surface, color, pygame.Rect(30, 30, 60, 60))
pygame.display.flip()
  • 1
    You completely misunderstood the question. The task is to fill a 4-point polygon with an image. This just draws a rectangle – Rabbid76 Jul 14 '22 at 04:58