Equation for Ball Deflection at Corners in a Breakout Game

In summary, the ball is bouncing around the screen but is not colliding with other sprites correctly. The ball is moving left to right and up the screen and is hitting blocks at a 25 degree angle. The direction of the sprite in degrees. This is measured between (-179 and 180) and can be turned either left or right by a number of degrees. If the sprite were to be traveling right to left its direction would be -25 degrees (NW) before the collision and -115 degrees (SW) after the collision.
  • #1
Kiltedboy
1
0
Hi First Post so go easy.

I am teaching a programming course for kids between 10-14.

We are using scratch which is a sprite animator.

We are trying to make a breakout game (you know the one where you break block with a ball)

We have a ball sprite that we can easily bounce around the screen as there is a build in function called "If on edge,bounce".

The issue we are having is when the ball collides with another sprite (a block or the paddle).

We would like to know if there is an equation that would work for all collisions so that,

The angle of the ball after the collision is equal and opposite to the angle of the ball before the collision.

e.g. If the ball is moving from left to right and up the screen and collides with block at a 25 degree angle, it continues left to right but leaves the block at a 25 degree angle but is now moving in a downward direction.

Here is what we know ,

The direction of the sprite in degrees. This is measured between (-179 and 180)

0 degrees is North (up)
90 degrees is East (right)
180 degrees is South (down)
-90 degrees is West (left)

We can turn a sprite either left or right by a number of degrees

So in my 25 degree example above the spirtes direction would be 25 degrees (NE) before the collision and 115 degrees (SE) after the collision,

If the sprite were to be traveling right to left :

Its direction would be -25 degrees (NW) before the collision and -115 degrees (SW) after the collision

Can one of you Physics Geniuses come up with an equation that would work for all collisions?

i.e. on all 4 sides of the block from all possible directions ?

Thanks in advance,

Drumbrae Coder Dojo Pupils
 
Physics news on Phys.org
  • #2
Can you define the sides of the blocks as "edges" and reuse the function you already have?
 
  • #3
If the velocity of the ball has horizontal and vertical components then I think you only need to change the sign of one of them depending on the orientation of the face it hits. eg if it hits a vertical edge then change the sign of the horizontal component. Likewise if it hits a horizontal edge change the sign of the vertical component...
 

Attachments

  • Bounce.jpg
    Bounce.jpg
    10.1 KB · Views: 481
  • #4
It would have to depend on what you have defined as 180 and 0 degrees. The only thing you need to know is that angle of incidence is equal to the angle of reflection. The angle the ball comes in on will equal the angle that the ball will deflect. In your program your class definition (I do not know syntax for scratch) you could simple take the supplement or you could just take the opposite.
 
  • #5
The easiest thing to do is just reflect the horizontal or vertical velocity, depending on which side of the block or paddle was hit. If you want to give the player a little more control, you can change the angle by hitting the corner of a block or paddle. To handle this case, you need the radius of curvature of the corner plus the radius of the ball. In the simple case, only the ball is curved.

Something like the following should work for a corner collision..

R = radius of ball
(x0, y0) = position of ball center
(x1, y1) = position of corner
most programming languages have a function called atan2 which gives the angle based on a vertical and horizontal displacement.
angle = atan2(y1-y0, x1-x0)
(vxi, vyi) = initial velocity of ball
(vxf, vyf) = final velocity of ball
vxf = -vxi*cos(2*angle) + vyi*sin(2*angle)
vyf = vxi*sin(2*angle) + vyi*cos(2*angle)

You might need to fiddle with the signs if I messed them up.
 

1. What is the equation for ball deflection?

The equation for ball deflection is a mathematical formula that calculates the amount and direction of deviation of a ball's trajectory after it bounces off a surface. It takes into account factors such as the ball's initial velocity, the angle of impact, and the surface's elasticity.

2. How is the equation for ball deflection derived?

The equation for ball deflection is derived from the laws of physics, specifically the principles of conservation of momentum and energy. It uses the principle of impulse to determine the change in velocity of the ball after impact, and then applies the laws of motion to calculate the resulting deflection.

3. Can the equation for ball deflection be used for different types of balls?

Yes, the equation for ball deflection is a general formula that can be applied to different types of balls, as long as they have similar physical properties such as mass and elasticity. However, some modifications may be necessary for certain types of balls, such as those with irregular shapes or varying densities.

4. Are there any limitations to the equation for ball deflection?

Like any mathematical model, the equation for ball deflection has its limitations. It assumes ideal conditions, such as a perfectly elastic surface and no air resistance, which may not always be the case in real-world situations. It also does not take into account factors like spin or rotation of the ball, which can affect its deflection.

5. How is the equation for ball deflection useful in real life?

The equation for ball deflection has practical applications in various fields, such as sports, engineering, and physics research. It can help in predicting the trajectory of a ball in a game or designing structures that can withstand impacts from bouncing objects. It also provides insights into the behavior of elastic materials and helps in understanding the underlying principles of motion and energy transfer.

Similar threads

Replies
4
Views
925
  • Mechanics
Replies
3
Views
1K
Replies
3
Views
929
Replies
8
Views
3K
  • Introductory Physics Homework Help
Replies
34
Views
697
  • Introductory Physics Homework Help
Replies
2
Views
1K
Replies
4
Views
7K
Replies
37
Views
3K
Replies
8
Views
1K
Back
Top