Daily Creative Coding

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

2015-10-31から1日間の記事一覧

ベジエ曲線を重ねる

/** * Beziers * * @author aa_debdeb * @date 2015/10/31 */ void setup(){ size(500, 500); smooth(); frameRate(24); } void draw(){ background(0); stroke(255); strokeWeight(1); noFill(); translate(100, height/2); for(int i = 0; i < 100; i++){ …