Daily Creative Coding

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

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

ラインで複雑なスパイラル

/** * Spiral By Line * * @author aa_debdeb * @date 2015/10/15 */ float radious1 = 200, radious2 = 150; void setup(){ size(500, 500); smooth(); frameRate(24); background(0); } void draw(){ noStroke(); fill(0, 100); rect(-1, -1, width + 1, h…

Transforming Dots

/** * Transforming Dots * * @author aa_debdeb * @date 2015/10/14 */ void setup(){ size(500, 500); smooth(); frameRate(24); } void draw(){ background(30); noStroke(); fill(255, 20, 147, 150); translate(width/2, height/2); for(int x = -100; …