Public
Edited
Dec 15, 2023
Insert cell
Insert cell
Insert cell
p5((s) => {
s.setup = function () {
s.createCanvas(width, height);
s.noLoop();
s.stroke(0);
};
s.draw = function () {
s.beginShape();
s.vertex(0, 0); // left top
s.vertex(width / 2, height / 2); // center center
s.vertex(0, height / 2); // left center
s.vertex(width / 2, height); // center bottom
s.vertex(width, 0); // right top
s.endShape();
};
})
Insert cell
Insert cell
p5((s) => {
let cells = 20
let cellWidth = width / 20
s.setup = function () {
s.createCanvas(width, height);
s.noLoop();
s.stroke(0);
};
s.draw = function () {
s.beginShape();
for (let i = 0; i <= cells; i++) {
s.vertex(cellWidth * i, s.random(0, height));
}
s.endShape();
};
})
Insert cell
Insert cell
p5((s) => {
s.setup = function () {
s.createCanvas(width, height);
s.noLoop();
s.stroke(0);
};
s.draw = function () {
s.beginShape();
s.curveVertex(0, 0); // left top
s.curveVertex(width / 2, height / 2); // center center
s.curveVertex(0, height / 2); // left center
s.curveVertex(width / 2, height); // center bottom
s.curveVertex(width, 0); // right top
s.endShape();
};
})
Insert cell
Insert cell
p5((s) => {
s.setup = function () {
s.createCanvas(width, height);
s.noLoop();
s.stroke(0);
};
s.draw = function () {
s.beginShape();
s.curveVertex(0, 0); // left top
s.curveVertex(0, 0); // left top
s.curveVertex(width / 2, height / 2); // center center
s.curveVertex(0, height / 2); // left center
s.curveVertex(width / 2, height); // center bottom
s.curveVertex(width, 0); // right top
s.curveVertex(width, 0); // right top
s.endShape();
};
})
Insert cell
Insert cell
p5((s) => {
s.setup = function () {
s.createCanvas(width, height);
s.noLoop();
s.stroke(0);
};
s.draw = function () {
s.beginShape();
s.curveVertex(0, -300); // left top
s.curveVertex(0, 0); // left top
s.curveVertex(width / 2, height / 2); // center center
s.curveVertex(0, height / 2); // left center
s.curveVertex(width / 2, height); // center bottom
s.curveVertex(width, 0); // right top
s.curveVertex(width + 1000, 0); // right top
s.endShape();
};
})
Insert cell
Insert cell
p5((s) => {
let cells = 20
let cellWidth = width / 20
s.setup = function () {
s.createCanvas(width, height);
s.noLoop();
s.stroke(0);
s.noFill()
};
s.draw = function () {
s.beginShape();
s.curveVertex(0, height / 2);
for (let i = 0; i <= cells; i++) {
s.curveVertex(cellWidth * i, s.random(0, height));
}
s.curveVertex(width, height / 2);
s.endShape();
};
})
Insert cell
p5((s) => {
let cells = 20
let cellWidth = width / 20
let lines = 10
s.setup = function () {
s.createCanvas(width, height);
s.noLoop();
s.stroke(0);
s.noFill()
};
s.draw = function () {
for (let l = 0; l <= lines; l++) {
s.beginShape();
s.curveVertex(0, height / 2);
for (let i = 0; i <= cells; i++) {
s.curveVertex(cellWidth * i, s.random(0, height));
}
s.curveVertex(width, height / 2);
s.endShape();
}
};
})
Insert cell
import {p5} from "@thometnanni/p5";
Insert cell
height = 200
Insert cell

One platform to build and deploy the best data apps

Experiment and prototype by building visualizations in live JavaScript notebooks. Collaborate with your team and decide which concepts to build out.
Use Observable Framework to build data apps locally. Use data loaders to build in any language or library, including Python, SQL, and R.
Seamlessly deploy to Observable. Test before you ship, use automatic deploy-on-commit, and ensure your projects are always up-to-date.
Learn more