Just getting the ball rolling. Uploading a place-holder image and seeing how things look, format-wise.
def rotate_image(image, angle):
originalBoundingBox = image.get_rect()
rotatedImage = pygame.transform.rotate(image, angle)
rotatedBoundingBox = originalBoundingBox.copy()
rotatedBoundingBox.center = rotatedImage.get_rect().center
rotatedImage = rotatedImage.subsurface(rotatedBoundingBox).copy()
return rotatedImage
this_is_a_nest_test = True
this_is_a_nest_test_test = False
# Test to see how Tabs work in the forums
if this_is_a_nest_test == True:
if this_is_a_nest_test_test == True:
print("Yay")
else:
print("Boo")
else:
print("Why did you trick me?")