Calculate new velocity of a ball when colliding with a circle in 2D
$begingroup$
I'm currently making a 2D game in C++ but i've come across a problem while doing collisions. I have a ball free falling
The above example shows what's going on in my game, I can detect when the two circle collide fine but I don't know how to calculate a new velocity for the ball to get it to go "around" the circle and not try to force it's way through it. Any idea on how to calculate this vector ?
Edit: forgot to mention, circle collision is static while ball is moving
trigonometry vectors circle
$endgroup$
|
show 1 more comment
$begingroup$
I'm currently making a 2D game in C++ but i've come across a problem while doing collisions. I have a ball free falling
The above example shows what's going on in my game, I can detect when the two circle collide fine but I don't know how to calculate a new velocity for the ball to get it to go "around" the circle and not try to force it's way through it. Any idea on how to calculate this vector ?
Edit: forgot to mention, circle collision is static while ball is moving
trigonometry vectors circle
$endgroup$
2
$begingroup$
Why would the ball go "around" the circle? If I dropped a ball and it hit another ball that was fixed in place, I'd expect my ball either to go splat or bounce upward, depending on what the two balls were made of. I wouldn't expect it to simply "go around" the other ball unless the two balls had some very unusual properties. I suppose if you have a particular path and speed in mind, someone could come up with a formula for the velocity whether it makes physical sense or not.
$endgroup$
– David K
Jan 2 at 17:03
$begingroup$
@Matt You can have the new velocity vector tangential to the black circle at the point of contact
$endgroup$
– Shubham Johri
Jan 2 at 17:36
$begingroup$
More info is needed. Is this a collision between two moving balls? Is the collision completely elastic? What are their velocities and masses? Etc.
$endgroup$
– Jens
Jan 2 at 20:31
$begingroup$
@DavidK You are right, the ball would bounce but before implementing it i'd like collisions to work that way, for my personal learning mainly.
$endgroup$
– Matt
Jan 2 at 20:40
$begingroup$
@ShubhamJohri Yes, sounds like a good idea! I will take a look at that thanks
$endgroup$
– Matt
Jan 2 at 20:41
|
show 1 more comment
$begingroup$
I'm currently making a 2D game in C++ but i've come across a problem while doing collisions. I have a ball free falling
The above example shows what's going on in my game, I can detect when the two circle collide fine but I don't know how to calculate a new velocity for the ball to get it to go "around" the circle and not try to force it's way through it. Any idea on how to calculate this vector ?
Edit: forgot to mention, circle collision is static while ball is moving
trigonometry vectors circle
$endgroup$
I'm currently making a 2D game in C++ but i've come across a problem while doing collisions. I have a ball free falling
The above example shows what's going on in my game, I can detect when the two circle collide fine but I don't know how to calculate a new velocity for the ball to get it to go "around" the circle and not try to force it's way through it. Any idea on how to calculate this vector ?
Edit: forgot to mention, circle collision is static while ball is moving
trigonometry vectors circle
trigonometry vectors circle
edited Jan 2 at 20:38
Matt
asked Jan 2 at 16:55
MattMatt
133
133
2
$begingroup$
Why would the ball go "around" the circle? If I dropped a ball and it hit another ball that was fixed in place, I'd expect my ball either to go splat or bounce upward, depending on what the two balls were made of. I wouldn't expect it to simply "go around" the other ball unless the two balls had some very unusual properties. I suppose if you have a particular path and speed in mind, someone could come up with a formula for the velocity whether it makes physical sense or not.
$endgroup$
– David K
Jan 2 at 17:03
$begingroup$
@Matt You can have the new velocity vector tangential to the black circle at the point of contact
$endgroup$
– Shubham Johri
Jan 2 at 17:36
$begingroup$
More info is needed. Is this a collision between two moving balls? Is the collision completely elastic? What are their velocities and masses? Etc.
$endgroup$
– Jens
Jan 2 at 20:31
$begingroup$
@DavidK You are right, the ball would bounce but before implementing it i'd like collisions to work that way, for my personal learning mainly.
$endgroup$
– Matt
Jan 2 at 20:40
$begingroup$
@ShubhamJohri Yes, sounds like a good idea! I will take a look at that thanks
$endgroup$
– Matt
Jan 2 at 20:41
|
show 1 more comment
2
$begingroup$
Why would the ball go "around" the circle? If I dropped a ball and it hit another ball that was fixed in place, I'd expect my ball either to go splat or bounce upward, depending on what the two balls were made of. I wouldn't expect it to simply "go around" the other ball unless the two balls had some very unusual properties. I suppose if you have a particular path and speed in mind, someone could come up with a formula for the velocity whether it makes physical sense or not.
$endgroup$
– David K
Jan 2 at 17:03
$begingroup$
@Matt You can have the new velocity vector tangential to the black circle at the point of contact
$endgroup$
– Shubham Johri
Jan 2 at 17:36
$begingroup$
More info is needed. Is this a collision between two moving balls? Is the collision completely elastic? What are their velocities and masses? Etc.
$endgroup$
– Jens
Jan 2 at 20:31
$begingroup$
@DavidK You are right, the ball would bounce but before implementing it i'd like collisions to work that way, for my personal learning mainly.
$endgroup$
– Matt
Jan 2 at 20:40
$begingroup$
@ShubhamJohri Yes, sounds like a good idea! I will take a look at that thanks
$endgroup$
– Matt
Jan 2 at 20:41
2
2
$begingroup$
Why would the ball go "around" the circle? If I dropped a ball and it hit another ball that was fixed in place, I'd expect my ball either to go splat or bounce upward, depending on what the two balls were made of. I wouldn't expect it to simply "go around" the other ball unless the two balls had some very unusual properties. I suppose if you have a particular path and speed in mind, someone could come up with a formula for the velocity whether it makes physical sense or not.
$endgroup$
– David K
Jan 2 at 17:03
$begingroup$
Why would the ball go "around" the circle? If I dropped a ball and it hit another ball that was fixed in place, I'd expect my ball either to go splat or bounce upward, depending on what the two balls were made of. I wouldn't expect it to simply "go around" the other ball unless the two balls had some very unusual properties. I suppose if you have a particular path and speed in mind, someone could come up with a formula for the velocity whether it makes physical sense or not.
$endgroup$
– David K
Jan 2 at 17:03
$begingroup$
@Matt You can have the new velocity vector tangential to the black circle at the point of contact
$endgroup$
– Shubham Johri
Jan 2 at 17:36
$begingroup$
@Matt You can have the new velocity vector tangential to the black circle at the point of contact
$endgroup$
– Shubham Johri
Jan 2 at 17:36
$begingroup$
More info is needed. Is this a collision between two moving balls? Is the collision completely elastic? What are their velocities and masses? Etc.
$endgroup$
– Jens
Jan 2 at 20:31
$begingroup$
More info is needed. Is this a collision between two moving balls? Is the collision completely elastic? What are their velocities and masses? Etc.
$endgroup$
– Jens
Jan 2 at 20:31
$begingroup$
@DavidK You are right, the ball would bounce but before implementing it i'd like collisions to work that way, for my personal learning mainly.
$endgroup$
– Matt
Jan 2 at 20:40
$begingroup$
@DavidK You are right, the ball would bounce but before implementing it i'd like collisions to work that way, for my personal learning mainly.
$endgroup$
– Matt
Jan 2 at 20:40
$begingroup$
@ShubhamJohri Yes, sounds like a good idea! I will take a look at that thanks
$endgroup$
– Matt
Jan 2 at 20:41
$begingroup$
@ShubhamJohri Yes, sounds like a good idea! I will take a look at that thanks
$endgroup$
– Matt
Jan 2 at 20:41
|
show 1 more comment
0
active
oldest
votes
Your Answer
StackExchange.ifUsing("editor", function () {
return StackExchange.using("mathjaxEditing", function () {
StackExchange.MarkdownEditor.creationCallbacks.add(function (editor, postfix) {
StackExchange.mathjaxEditing.prepareWmdForMathJax(editor, postfix, [["$", "$"], ["\\(","\\)"]]);
});
});
}, "mathjax-editing");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "69"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
noCode: true, onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmath.stackexchange.com%2fquestions%2f3059705%2fcalculate-new-velocity-of-a-ball-when-colliding-with-a-circle-in-2d%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
Thanks for contributing an answer to Mathematics Stack Exchange!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
Use MathJax to format equations. MathJax reference.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmath.stackexchange.com%2fquestions%2f3059705%2fcalculate-new-velocity-of-a-ball-when-colliding-with-a-circle-in-2d%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
2
$begingroup$
Why would the ball go "around" the circle? If I dropped a ball and it hit another ball that was fixed in place, I'd expect my ball either to go splat or bounce upward, depending on what the two balls were made of. I wouldn't expect it to simply "go around" the other ball unless the two balls had some very unusual properties. I suppose if you have a particular path and speed in mind, someone could come up with a formula for the velocity whether it makes physical sense or not.
$endgroup$
– David K
Jan 2 at 17:03
$begingroup$
@Matt You can have the new velocity vector tangential to the black circle at the point of contact
$endgroup$
– Shubham Johri
Jan 2 at 17:36
$begingroup$
More info is needed. Is this a collision between two moving balls? Is the collision completely elastic? What are their velocities and masses? Etc.
$endgroup$
– Jens
Jan 2 at 20:31
$begingroup$
@DavidK You are right, the ball would bounce but before implementing it i'd like collisions to work that way, for my personal learning mainly.
$endgroup$
– Matt
Jan 2 at 20:40
$begingroup$
@ShubhamJohri Yes, sounds like a good idea! I will take a look at that thanks
$endgroup$
– Matt
Jan 2 at 20:41