How to move an object in a circular path?

Moving an object in a circular path

  • I want to move one object (dot) in a circular path. How should I change the X and Y coordinates to accomplish this?

  • Answer:

    You can make it by using simple math. X := originX + sin(angle)*Size; Y := originY + cos(angle)*Size; Origin is the center of your circle. Size is the radius of that circle. Thats it.

Ganapathy at Game Development Visit the source

Was this solution helpful to you?

Other answers

There's another trick, where you use the sin(x+a) and cos(x+a) formulas, and that allows you to compute sin(a) and cos(a) -- a being the angle by which you want to move from your current position -- only once and do simply multiplication and additions at each step. sin(x+a) = sin(x)*cos(a) + cos(x)*sin(a), iirc. Of course, that assumes constant angular velocity.

sylvainulg

Related Q & A:

Just Added Q & A:

Find solution

For every problem there is a solution! Proved by Solucija.

  • Got an issue and looking for advice?

  • Ask Solucija to search every corner of the Web for help.

  • Get workable solutions and helpful tips in a moment.

Just ask Solucija about an issue you face and immediately get a list of ready solutions, answers and tips from other Internet users. We always provide the most suitable and complete answer to your question at the top, along with a few good alternatives below.