Finding a second point on a circle

  • Thread starter Thread starter chuckrussell
  • Start date Start date
  • Tags Tags
    Circle Point
chuckrussell
Messages
2
Reaction score
0
Hey, I have scoured the interned for an answer to this question, but so far my search has been uneventful.

Given a circle with center point (h,k), radius r, and a point on the circle (x,y), I need to find the point on the circle at angle a from (x,y).

Any thoughts?

attachment.php?attachmentid=32479&stc=1&d=1298482555.png

circle.png

Attached is a picture diagramming my dilemma
 
Physics news on Phys.org
welcome to pf!

hi chuckrussell! welcome to pf! :smile:

hint: dot product :wink:
 
Not going to lie, after searching for days on the topic, a hint is of almost no help. I appreciate it all the same, but could you perhaps just give me a formula to use?
 
One way is

Shift the center of the circle to the origin.
Find the angle of (x,y) from the center using the inverse tangent function
Find the angle of (i,j)
Find i and j using sin and cos
Shift the center back to (h,k).
 
Back
Top