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

Pardon the funny title. I've created a little graphic demo of 200 balls bouncing and colliding, both against the walls and each other. You can see what I have currently here: http://www.exeneva.com/html5/multipleBallsBouncingAndColliding/

The problem is that whenever they collide with each other, they disappear. I'm not sure why. Can someone take a look and help me out?

UPDATE: Apparently the balls array has balls with coordinates of NaN. Below is the code where I push balls to the array. I'm not entirely sure how the coordinates are getting NaN.

// Variables
var numBalls = 200;  // number of balls
var maxSize = 15;
var minSize = 5;
var maxSpeed = maxSize + 5;
var balls = new Array();
var tempBall;
var tempX;
var tempY;
var tempSpeed;
var tempAngle;
var tempRadius;
var tempRadians;
var tempVelocityX;
var tempVelocityY;

// Find spots to place each ball so none start on top of each other
for (var i = 0; i < numBalls; i += 1) {
  tempRadius = 5;
  var placeOK = false;
  while (!placeOK) {
    tempX = tempRadius * 3 + (Math.floor(Math.random() * theCanvas.width) - tempRadius * 3);
    tempY = tempRadius * 3 + (Math.floor(Math.random() * theCanvas.height) - tempRadius * 3);
    tempSpeed = 4;
    tempAngle = Math.floor(Math.random() * 360);
    tempRadians = tempAngle * Math.PI/180;
    tempVelocityX = Math.cos(tempRadians) * tempSpeed;
    tempVelocityY = Math.sin(tempRadians) * tempSpeed;

    tempBall = {
      x: tempX, 
      y: tempY, 
      nextX: tempX, 
      nextY: tempY, 
      radius: tempRadius, 
      speed: tempSpeed,
      angle: tempAngle,
      velocityX: tempVelocityX,
      velocityY: tempVelocityY,
      mass: tempRadius
    };
    placeOK = canStartHere(tempBall);
  }
  balls.push(tempBall);
}
share|improve this question
5  
A bit of debugging shows that balls array is filled with balls with NaN coordinates. Find out where that comes from. – doublep Jun 16 '12 at 18:42
83  
This gets my vote, even if only for the best question title of the year!! – Alex Jun 17 '12 at 11:02
7  
When reading the title I thought it was a joke. – poitroae Jun 18 '12 at 20:06
4  
By the way, this has been the #1 question in the official (!) Stackoverflow Newsletter. Thanks guys, for showing a good sense of humour. – Panique Jun 19 '12 at 18:04
15  
perhaps it was a cold day? You should not worry about this excessively but if you want to mask the problem favour baggy swim shorts over Speedos – Rob Kielty Jun 19 '12 at 18:13
show 5 more comments

2 Answers

up vote 88 down vote accepted

Your error comes from this line initially:

var direction1 = Math.atan2(ball1.velocitY, ball1.velocityX);

You have ball1.velocitY (which is undefined) instead of ball1.velocityY. So Math.atan2 is giving you NaN, and that NaN value is propagating through all your calculations.

This is not the source of your error, but there is something else that you might want to change on these four lines:

ball1.nextX = (ball1.nextX += ball1.velocityX);
ball1.nextY = (ball1.nextY += ball1.velocityY);
ball2.nextX = (ball2.nextX += ball2.velocityX);
ball2.nextY = (ball2.nextY += ball2.velocityY);

You don't need the extra assignments, and can just use the += operator alone:

ball1.nextX += ball1.velocityX;
ball1.nextY += ball1.velocityY;
ball2.nextX += ball2.velocityX;
ball2.nextY += ball2.velocityY;
share|improve this answer
That's it! Thanks so much! I got carried away typing is all! – Yang Pulse Jun 16 '12 at 18:47
4  
@YangPulse Aha! Well it's a bit funny that velocitY reads as velocity, making it a bit harder to spot. You're welcome! :) – Paulpro Jun 16 '12 at 18:48
10  
An argument for strongly typed languages, perhaps? (runs... ducks) – Adam Jun 19 '12 at 18:15
3  
Perl would have given the warning “velocitY used only once — possible typo” without being strongly typed. shrug – BRPocock Jun 19 '12 at 18:32
@Adam Why are you running? It seems good for me... – jadkik94 Jun 19 '12 at 19:42
show 3 more comments

There's an error in the collideBalls function:

var direction1 = Math.atan2(ball1.velocitY, ball1.velocityX);

It should be:

var direction1 = Math.atan2(ball1.velocityY, ball1.velocityX);
share|improve this answer
13  
Don't let the balls touch..... DON'T – ZnArK Jun 23 '12 at 0:55

protected by Mysticial Jul 12 '12 at 18:43

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

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