Daily Creative Coding

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

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

リサージュ図形

/** * Lissajous figure * * @author aa_debdeb * @date 2016/03/09 */ void setup(){ size(500, 500); frameRate(180); background(0); stroke(255, 50); strokeWeight(1); } void draw(){ float x = map(sin(frameCount * 0.0334435), -1, 1, 0, width); f…