|| (testPoint2D.y < (INITIAL_HEIGHT + hpadding) || testPoint2D.y > (WORLD_HEIGHT - hpadding)))
return false;
for (float i = -5; i < 5; i += 0.5f) {
if (particles.size() >= SIZE - 1)
break;
particles.add(new Particle(testPoint2D.x + i, testPoint2D.y));
tempParticle = particles.get(particles.size() - 1);
tempParticle.type = (emitType);
if (viscoElasticityEnabled)
springPresenceTable.put(tempParticle.hashCode(),
new ArrayList<Integer>(SIZE));