So I drew a rectangle today:
my_rectangle = pygame.Rect(100, 100, 5, 5)
pygame.draw.rect(display, colour["black"], my_rectangle, 100)
Instead of drawing a thin bordered rectangle it draw a really big cross/plus sign.
This happened because i typed "100" instead of "1" for the border thickness when drawing the rect onto the screen.
But whats the logic behind this?
the border thickness grew so large that....?
anyone want to explain what you think or know has occurred?
