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
/* Number of panels in total | |
Draw shadows for which panel (-1 for all) */ | |
function draw_shadows(num, n) { | |
if (n != -1) num = n; | |
else n++; | |
for (n = n; n <= num; n++) { | |
alert(n); | |
} | |
} |