Assuming you're rotating clockwise from 12 o'clock, your new x-coordinate will be:
sin(130) * 200 = 153 + original x-coordinate
And your new y-coordinate will be
cos(130) * 200 = -129 + original y-coordinate (assuming negative 'y' is down)
As below, note that in C#, for example, sin
and cos
take radians, not degrees - multiply by Math.PI/180
to get the value in radians first.