xxxxxxxxxx
104
let vertices;
let colors;
function setup() {
// https://www.colourlovers.com/palette/4833974/Cascadepark-palet
// colors = [
// color("#DCD2CF"),
// color("#99A79C"),
// color("#E1E5DF"),
// color("#6A7A81"),
// color("#E3DECE"),
// ];
// // https://www.colourlovers.com/palette/4833977/%D0%9E%D1%81%D1%96%D0%BD%D1%8C
colors = [
color("#CCD83C"),
color("#E9FC0A"),
color("#9AA143"),
color("#6EA143"),
color("#75FC06"),
];
createCanvas(600, 600);
// createCanvas(7200, 7200);
background(colors[3]);
let col1 = colors[3];
let col2 = colors[0];
let col3 = colors[4];
col1._array[3] = random(50,150)/255;
col2._array[3] = random(50,150)/255;
col3._array[3] = random(50,150)/255;
vertices = [];
for (let row = 0; row < height / 2; row++) {
let _v = [];
let _x = 0;
let _y = random(height);
_v.push({ x: _x, y: _y });
for (let i = 0; i < random(50); i++) {
_v.push({ x: random(width), y: random(-2, 2) + _y });
}
_v.push({ x: width, y: _y });
vertices.push(_v);
}
noFill();
stroke(col1);//color(random(255), random(255), random(255), random(255)));
strokeWeight(0.05);
vertices.forEach(function (v) {
beginShape();
vertex(v[0].x, v[0].y);
for (let i = 1; i < v.length - 1; i++) {
curveVertex(v[i].x, v[i].y);
}
vertex(v[v.length - 1].x, v[v.length - 1].y);
endShape(CLOSE);
});
noFill();
let _verts = shuffle(vertices);
for (let i = 0; i < _verts.length / 4; i++) {
strokeWeight(random(0.25, 1.25)); //.5);
stroke(col2);//color(0, 255, 0, random(100, 150)));
let v = _verts[i];
beginShape();
vertex(v[0].x, v[0].y);
for (let i = 1; i < v.length - 1; i++) {
curveVertex(v[i].x + random(-20, 20), v[i].y + random(-20, 20));
// curveVertex(v[i].x, v[i].y);
}
vertex(v[v.length - 1].x, v[v.length - 1].y);
endShape(CLOSE);
}
noFill();
// strokeWeight(.5);
// stroke(color(255,255,0,50));
for (let i = 0; i < _verts.length / 4; i++) {
strokeWeight(random(0.25, 1.25)); //.5);
stroke(col3);//color(255, 255, 0, random(100, 150)));
let v = _verts[i];
beginShape();
vertex(v[0].y, v[0].x);
for (let i = 1; i < v.length - 1; i++) {
curveVertex(v[i].y + random(-20, 20), v[i].x + random(-20, 20));
}
vertex(v[v.length - 1].y, v[v.length - 1].x);
endShape(CLOSE);
}
// console.log(vertices);
}
function draw() {
noLoop();
// background(220);
}