Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How can I calculate a point (X,Y) a specified distance away, on a rotated axis? I know what angle I'd like the point "moving" along (in degrees).

share|improve this question
1  
It's not really clear what you mean. There are easy formulae to rotate a point around a specific origin, but I don't see where "a specified distance away" comes into it. – Jon Skeet Jun 28 '09 at 15:00

3 Answers

up vote 7 down vote accepted
x = cos(a) * d
y = sin(a) * d

where a is the angle and d is the distance.

If the trigonometry functions takes radians intead of degrees, you have to convert the angle by dividing by 180/pi.

share|improve this answer
1  
Possibly adding "+ox" and "+oy" considering (ox, oy) the origin of the rotation? Or am I wrong on this topic? – luiscubal Jun 28 '09 at 15:32
Sure, and a in radians not degrees or grads. – Burkhard Jun 28 '09 at 15:43

Convert to polar coordinates and then rotate the point through the angle you want:

x = r * cos( theta );
y = r * sin( theta );

Note: theta in radians ( deg = rad * 180 / pi )

More info on polar coordinates.

share|improve this answer

Do you mean the 3d formulas? They are easy as well. But we need to know what's your convention for specifying the axis.

share|improve this answer

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.