Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I want to know how to work out the new co-ordinates for a point when rotated by an angle relative to another point.

I have a block arrow and want to rotate it by an angle theta relative to a point in the middle of the base of the arrow.

This is required to allow me to draw a polygon between 2 onscreen controls. I can't use and rotate an image.

From what I have considered so far what complicates the matter further is that the origin of a screen is in the top left hand corner.

share|improve this question

2 Answers

up vote 61 down vote accepted

If you rotate point (px, py) around point (ox, oy) by angle theta you'll get:

p'x = cos(theta) * (px-ox) - sin(theta) * (py-oy) + ox
p'y = sin(theta) * (px-ox) + cos(theta) * (py-oy) + oy
share|improve this answer
1  
Do you have the 3D version in memory too? :) – Mehrdad Afshari Apr 24 '09 at 16:08
1  
Nope, just 2D. ;) – Ben Alpert Apr 25 '09 at 3:40
1  
Would theta be in radiants and degrees ? Forgive if dumb -Q- .. – lb. Sep 1 '09 at 9:10
5  
It depends on which library you're using for the trig functions. In C, you need to pass in radians. – Ben Alpert Sep 1 '09 at 23:38
1  
to convert in radians : value * Math.PI / 180; – Goot Feb 19 at 10:35
show 1 more comment

If you are using GDI+ to do that, you can use Transform methods of the Graphics object:

graphics.TranslateTransform(point of origin);
graphics.RotateTransform(rotation angle);

Then draw the actual stuff.

share|improve this answer
1  
Shouldn't that be a translation by -point of origin? – Spook Oct 24 '12 at 11:42

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.