This is part of the code I am using to draw some random circles:

if(circles.length != 0) { //1+ circles have already been drawn
  x = genX(radius);
  y = genY(radius);
  var i = 0;
  iCantThinkOfAGoodLabelName:
  for(i in circles) {
    var thisCircle = circles[i];
    if(Math.abs(x-thisCircle["x"])+Math.abs(y-thisCircle["y"])>radius*2) {
      //overlaps
    } else {
      //overlaps
      x = genX(radius);
      y = genY(radius);
      continue iCantThinkOfAGoodLabelName;
    }

    if(i == circles.length - 1) { //Last iteration
      //Draw circle, add to array
    }
  }
}

The problem is that when there is an overlap, the circle with the newly generated coordinates is not checked for overlap with the circles that the overlapping circle had already been checked with. I have tried setting i to 0 before using the continue statement but that did not work. Please help, I am really confused.

link|improve this question

can yuo create a jsfiddle for this? – Ibu Jun 18 '11 at 4:32
Okay... jsfiddle.net/evQ8a – JJ56 Jun 18 '11 at 4:34
feedback

3 Answers

up vote 3 down vote accepted

You should not use for ... in on arrays.

Use for(var i = 0; i < circles.length; ++i) instead. Then you can reset by setting i = 0.

link|improve this answer
Beat me to it. This is the right approach. – Jess Jun 18 '11 at 4:35
I'm trying to find that excellent site that explained a lot of JavaScript foibles, including why you shouldn't use for ... in on arrays... I think it was blue background, white text, with a nice sidebar table of contents... if anyone finds it before me, comment :) – Domenic Jun 18 '11 at 4:36
2  
I think this is it:bonsaiden.github.com/JavaScript-Garden – S. Albano Jun 18 '11 at 4:39
Yes! That was it :D – Domenic Jun 18 '11 at 4:41
feedback

I'm not fully understanding the question, but I do not believe you can reset the iterations of a for..in. You'll need to go to a for(var i=0;...;i++).

link|improve this answer
feedback

Why not use a standard for loop

for (var i=0,l = circles.length;i < l; i++) {
   ....  

   if (i === l) {
     // draw
   }
}
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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