Rony
Rony

Reputation: 1229

Box2d:negative value return from GetLinearVelocity();

When I use the following, sometimes I get a negative value in mmVelik.x and mVelik.y. Can anyone explain why??

b2Vec2 mVelik = ballBody->GetLinearVelocity();

Upvotes: 0

Views: 611

Answers (1)

Felixyz
Felixyz

Reputation: 19143

If the value couldn't be negative, then objects would only be able to move in one direction. If the x value is positive, the velocity is toward the right, if it's negative, then toward the left. And ditto for the y value (down/up).

Upvotes: 3

Related Questions