binomialnomenckature seems to be difficult because a scienctific name is derived from
Answers
Answered by
0
// By Roni Kaufman
let kMax;
let step;
let n = 80; // number of blobs
let radius = 20; // diameter of the circle
let inter = 1; // difference between the sizes of two blobs
let maxNoise = 250;
let noiseProg = (x) => (x);
function setup() {
createCanvas(500, 500);
//colorMode(HSB, 1);
angleMode(DEGREES);
noFill();
//noLoop();
kMax = random(0.6, 1.0);
step = 0.01;
noStroke();
}
function draw() {
blendMode(BLEND);
Similar questions