Consider the code for rotating an image to the left. If we wish to change it so that it rotates an image clockwise by +90 degrees, then the rotate() line should be changed to:
graphics.rotate(90.0 * PI / 180.0)
What is the correct change for the translate() line? Remember that rotation is performed around the top-left corner.