Daily Creative Coding

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

2016-02-23から1日間の記事一覧

リズムを合わせる円弧

/** * Rhythmic Arc * * @author aa_debdeb * @date 2016/02/23 */ void setup(){ size(500, 500); frameRate(30); noFill(); stroke(0); strokeWeight(8); } void draw(){ background(255); translate(width / 2, height / 2); for(int i = 0; i < 20; i++)…