エントリーの編集
エントリーの編集は全ユーザーに共通の機能です。
必ずガイドラインを一読の上ご利用ください。
記事へのコメント0件
- 注目コメント
- 新着コメント
このエントリーにコメントしてみましょう。
注目コメント算出アルゴリズムの一部にLINEヤフー株式会社の「建設的コメント順位付けモデルAPI」を使用しています
- バナー広告なし
- ミュート機能あり
- ダークモード搭載
関連記事
Generative Art #162|おかず
Codevoid setup() { size(900, 900); pixelDensity(2); noLoop(); } void draw() { background(getCol()... Codevoid setup() { size(900, 900); pixelDensity(2); noLoop(); } void draw() { background(getCol()); noStroke(); for (int i=0; i<1000; i++) { fill(getCol()); noiseCircle(random(width), random(height), random(10, 100)); noiseSeed(int(random(10000))); } tileRec(0, 0, width, height); noiseFilter(); } void tileRec(float x_, float y_, float w_, float h_) { int tileCountW = (int)random(2, 6); int tileCou