Daily Creative Coding

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

2015-11-12から1日間の記事一覧

マウスを避けるドット

/** * Untouchable Dots * * @author aa_debdeb * @date 2015/11/12 */ void setup(){ size(500, 500); smooth(); frameRate(30); } void draw(){ background(255); noStroke(); fill(0); for(int x = 0; x < 50; x++){ for(int y = 0; y < 50; y++){ PVecto…