* @param gravity The direction and force of gravity
* @param iterations The number of iterations to run each step. More iteration
* is more accurate but slower
*/
public World(Vector2f gravity, int iterations) {
this(gravity, iterations, new BruteCollisionStrategy());
}