+ 1
Pygame rotating rectangles
Does anyone know how to rotate a rectangle (not an image or sprite) with or without losing quality?
1 Answer
+ 3
when you draw anything.
drawing_surface = pygame.draw.rect(...)
They return a surface object, just like images and font rendering do.
But I have no idea how to rotate it, other ways than the given one.