Daily Creative Coding

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

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

渦巻く花

/** * Vortical Flower * * @author aa_debdeb * @date 2016/01/08 */ void setup(){ size(500, 500); smooth(); frameRate(60); noStroke(); } void draw(){ float time = frameCount * 0.01; background(0); translate(width/2, height/2); for(int angle …