Daily Creative Coding

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

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

車輪の回転

/** * Wheel Rotation * * @author aa_debdeb * @date 2016/01/15 */ void setup(){ size(500, 500); frameRate(30); smooth(); } void draw(){ background(255); fill(220, 20, 60); noStroke(); float posRad = frameCount * 0.3; float posR = 100; trans…