Palette

ritocoのクリエイティブコーディング記録

Processing / p5js

【 p5.js/Processing 】四角に角度をつけて並べる

没になったソースコードを公開しました。

【 p5.js/Processing 】Ellipses and Cracked lines.

没になったソースコードを公開しました。

【 Processing / p5.js 】Blurred ellipse.

ソースコードを公開しました! ぜひ使ってください!

【 p5.js 】Soft trigonometric pictures.

作品のかけらを公開しています。

【 p5.js 】Painting like an oil painting.

code01( p5.js ) function setup() { createCanvas(canva = 300,canva,WEBGL); frameRate(1); w = 800; n = 900; noLoop(); } function draw() { background(255); noStroke(); // light r = random; v = createVector; myAl = ambientLight; myPl = pointLi…

【 p5.js 】It tried to become a sphere.

code( p5.js ) function setup() { createCanvas(500, 500, P2D); noLoop(); noFill(); } function draw() { // background color background(random(220, 250), random(220, 250), random(200, 250)); // motif position let dr_steps = width / 10; for (l…

【 p5.js 】Whimsical Gradations.

code( p5.js ) let num = 15; let angle = 1.0; function setup() { createCanvas(500, 500, P2D); colorMode(HSB, 360, 100, 100, 100); drawingContext.shadowBlur = windowWidth*0.08; //0.08-1.2 noLoop(); } function draw() { background(255); marble…

【 Processing / p5.js 】Cracked lines

code( p5.js ) function setup() { createCanvas(700, 700); noLoop(); noFill(); } function draw() { // background color background(random(200, 250), random(200, 250), random(200, 250)); // motif position let dr_steps = random(95, 100); for (l…

【Processing】"Processing iCompiler"と"つぶやきProcessing"で作品制作をしてみた

閲覧ありがとうございます。ritocoです。 今年もアドベントカレンダーに参加できたことが嬉しいです! この記事はProcessing Advent Calendar 2019の21日目の記事です。 前日の記事は WGGさんの「p5.js と reveal.js でブラウザで動くインタラクティブなプレ…