what happens when a point is rotated 90 degrees clockwise

When a point is rotated 90 degrees clockwise, its new coordinates are found by swapping the x and y values and negating the new y value.

If the original coordinates of the point are (x, y), then the new coordinates after a 90-degree clockwise rotation would be (-y, x).