Skip to content

Commit

Permalink
Minor clean up.
Browse files Browse the repository at this point in the history
  • Loading branch information
mrdoob committed Jul 24, 2015
1 parent 01ffeb7 commit b81cbbe
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions examples/webgl_shadowmap_performance.html
Expand Up @@ -289,12 +289,11 @@

morphColorsToFaceColors( geometry );

for ( var i = - 600; i < 601; i += 2 ) {

var i = -600;
while (i < 601){
addMorph( geometry, 550, 1000, 100 - Math.random() * 3000, FLOOR, i, true );
i += 2;
}
addMorph( geometry, 550, 1000, 100 - Math.random() * 3000, FLOOR, i, true );

}

} );

Expand Down

0 comments on commit b81cbbe

Please sign in to comment.