My engine (AndEngine) provides the modifier to move an object by Bezier Curve path, just by providing 3 or 4 points co-ordinate.

In my game, I move some birds with determined 3 points. However, it looks fake because the birds always point to a direction.

This looks like a mathematical question, but I think I should post at StackOverflow instead of Math Exchange: How to determine the rotation angle (in radian or degree) for the birds at a time?

link|improve this question

feedback

3 Answers

up vote 1 down vote accepted

You will take two points say P1 and P2 and will find the angle between them and then rotate you bird on that angle

    deltaX = nextPointX - YourBirdX;
    deltaY = NextPointY - YourBirdY;
    degree = ((Math.atan2(deltaY, deltaX)));
    angle = degree * 180 / 3.14;

    if(angle<0)
    {
        angle = 360+angle;
    }

I hope this will help you.

link|improve this answer
float angleRad =(float)Math.atan2(deltaY, deltaX); float Vx = 50* (float)Math.cos(angleRad); float Vy = 50 * (float)Math.sin(angleRad); body.setVelocity(vX,vY); – Algo Feb 16 at 7:44
feedback

http://en.wikipedia.org/wiki/Tangent

That will probably help you alot.

link|improve this answer
feedback

What about (bezier(path, position + epsilon) - bezier(path, position)) / epsilon? Or, if you want it without the epsilon, look up the first derivation of a bezier curve.

link|improve this answer
I don't know anything about Bezier Curve! I just input 3 points co-ordianates, and the engine does the rest, so I have no idea what are they. – W.N. Nov 15 '11 at 11:22
feedback

Your Answer

 
or
required, but never shown

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