Had this Genshin Gatcha idea that slapped me in the face this morn so I drew it out

was thinking of making these a commission thing :0000ccccc

3 9



float w,h,i,r;
size(300,500);
background(#00CCCC);
noStroke();
for(w=0;w<310;w+=99)
for(h=-w/2;h<610;h+=99){
fill(#FFFF00);
for(i=0;i<PI*30;i+=PI/18){
r=i%(PI/4)<PI/8?.5:.3;
circle(w+i*r*cos(i),h+i*r*sin(i),4-i/10);
}
}

2 7



float w, h, i;
size(300, 500);
background(#00CCCC);
noStroke();
for (w=0; w<310; w+=99)
for (h=-w/2; h<610; h+=99)
for (i=0; i<PI*30; i+=PI/4) {
fill(20-i/3>0?#FFFF00:-1);
circle(w+i*.4*cos(i), h+i*.4*sin(i), 20-i/3);
}

1 5