Daily Creative Coding

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

2016-12-17から1日間の記事一覧

歯車

/** * gears * * @author aa_debdeb * @date 2016/12/17 */ float bigR = 100; float smallR = 90; float angleStep = 5; float time = 0.0; void setup(){ size(500, 500); } void draw(){ background(255); translate(width / 2, height / 2); float dist …