Daily Creative Coding

元「30 min. Processing」。毎日、Creative Codingします。

2016-03-01から1日間の記事一覧

曖昧な円

/** * ambiguous circle * * @author aa_debdeb * @date 2016/03/01 */ int vertexNum = 50; void setup(){ size(500, 500); frameRate(30); background(255); noFill(); stroke(0, 10); } void draw(){ strokeWeight(map(noise(frameCount * 0.02 + 10000),…