This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function move_overlaps_higher(overlaps) { | |
cycle_list[0] = overlaps; | |
var another_row_needed = true; | |
for (var cyclerow = 0; another_row_needed; cyclerow++) { | |
another_row_needed = false; | |
var this_row = cycle_list[cyclerow]; | |
for (var ident = 0; ident < this_row.length; ident++) { | |
for (var x = ident - 1; x >= 0; x--) { | |
if (x < 0) continue; |
NewerOlder