Daily Creative Coding

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

2017-01-17から1日間の記事一覧

パルスで律動する円

/** * pulse circle * * @author aa_debdeb * @date 2017/01/17 */ void setup(){ size(640, 640); noFill(); strokeWeight(2); } void draw(){ background(238, 243, 239); translate(width / 2, height / 2); float radius = 200; float step = 5; for(flo…