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

Many apologies if this has been answered before but I wasn't able to quite find what I was looking for.

I have a Box2D dynamic body that I apply linear impulse to to turn it into a projectile. So when I click anywhere on the screen I want the body to be projected towards the touch location. I'm not concerned about the force yet, just the angle.

I already have my sprite rotating to point to the touch location so I can detect the initial rotation angle but how do I turn this angle, say 45 degrees into a "b2Vec2" value so that I can launch the body at exactly 45 degrees? something like this:

float rotationValue = 45.0f;
b2Vec2 vect = ??????
b2Vec2 PointVector = body->GetPosition();
body->ApplyLinearImpulse(vect, PointVector);

Any clues would be greatly appreciated.

Thanks

share|improve this question

1 Answer

sigh - this is why you should pay attention in your Math class :)

Converting angles to vect is super simple:

float angle = 45.0f;
b2Vec2 vect = b2Vec2(cos(angle), sin(angle));
share|improve this answer
maybe I'm wrong but don't you need to convert to radians here? – Zevan Dec 10 '10 at 0:00
2  
which would be : cos(angle * PI/180) – Zevan Dec 10 '10 at 0:08
Yes, you have to convert to radians when you're using sin() or cos(). However in the special case of 45 degrees it's super easy. vect = b2Vec2(1,1) :) – Sylvan Jan 14 at 13:40

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.