Daily Creative Coding

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

2016-05-30から1日間の記事一覧

線によるパーリンノイズの可視化

/** * visualization of 2d perlin noise by lines * * @author aa_debdeb * @date 2016/05/30 */ void setup(){ size(500, 500); stroke(0, 255, 128, 255); strokeWeight(1); } void draw(){ background(255); for(int w = -10; w < width + 10; w += 3){ …