Entries from 2016-09-29 to 1 day

ランダムネスを加えた渦巻きを重ねる [generative art, fig4.5a]

昼のprocessing ランダムネスを加えた渦巻きを重ねる. fig4.5a size(1000, 1000); background(255); smooth(); float angminBase = 0; float angmaxBase = 4*360; float x, y; int imin = 0; int imax = 1000; for (int i = imin; i < imax; i++) { float xo…

ランダムネスを加えた円(渦巻き) [generative art]

今朝のprcessing: ランダムネスを加えた円(渦巻き) [generative art] fig4.4 seedの初期値: random in [0, 10] パーリンノイズ(noise)を利用. size(500, 300); background(255); strokeWeight(5); smooth(); float centx = width/2; float centy = height/2;…

generative art 円

円を描く. 眠いのでちょっと休憩する. size(500, 300); background(255); strokeWeight(5); smooth(); float centx = width/2; float centy = height/2; float radius = height/2 - 10; stroke(0, 30); noFill(); ellipse(centx, centy, 2*radius, 2*radius)…