let botWidthHeight = Math.Max(bot.width,bot.height);
for(let x = 0; x <= 5000; x+= botWidthHeight)
for(let y = 0; y <= 5000; y+= botWidthHeight)
arrQuads[x][y] = {x:x,y:y,width:botWidthHeight,height:botWidthHeight};
void (*ptr)(int) =(void (*)(int)) ((int)CycleIteration + (arg / N) * ((int)CycleEnd - (int)CycleIteration));
#include <stdio.h>
#include <stdlib.h>
void cycleFor(int from, int to, int current){
if (current > to)return;
printf("%d\n", current);
cycleFor(from, to, ++current);
}
int main(){
cycleFor(0, 100, 0);
}