ポップな感じ (2025/9/1)
https://gyazo.com/bea3bb010bedd572d6d04dfe0dfe3a2d https://gyazo.com/9ca74153b043b042a9f7f586afcbd7cc https://gyazo.com/283de611a7c1672e450713c641ca0b15
https://scrapbox.io/files/68b59e5318e1714cb1233bc8.mp4
だいぶポップな感じになったのでは?
code:processing
int i, k, p;
float t;
String s="#Processing";
void setup() {
size(800, 800);
colorMode(3);
}
void draw() {
background(t/2%256, 255, 255);
strokeWeight(5);
for (i=0; i<12; i++) {
fill(i*20, 255, 255);
ellipse(i*70+10, a(i), 80, 60);
line(k=i*70+50, a(i), k-10, a(i+1));
fill(0);
textSize(60);
text(s.substring(i%11, i%11+1), i*70, a(i)+15);
}
t++;
}
float a(float b) {
return 550-(b%2+noise(b, t/99))*150;
}