Daily Creative Coding

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

2016-07-24から1日間の記事一覧

パーリンノイズでマーブル模様

/** * marble pattern by perlin noise * * @author aa_debdeb * @date 2016/07/24 */ float noiseX, noiseY; void setup(){ size(400, 400); noiseX = random(10000); noiseY = random(10000); stroke(255, 140, 128); } void draw(){ background(255, 250,…