Public
Edited
Jan 12, 2024
9 forks
Insert cell
Insert cell
p5((s) => {
let w = 23.4 * 30; // width
let h = 33.1 * 30; // height
// we'll need a high resolution (like 300 dpi) for printing
// since this is quite resource intensive (and to large to fit on your screen) we only use 30 dpi for now
// and scale the image 10x on export using the s.displayDensity command
let cw = 20; // cell width
let ch = 20; // cell height

let noiseScaleSpace = 0.0003
let noiseScaleTime = 0.0009
s.setup = function () {
s.createCanvas(w, h);
};
s.draw = function () {
s.clear()
s.background(15,60,60)
s.strokeWeight(5)
s.strokeCap(s.SQUARE)
s.stroke(30,120,120)
for (let x = 0; x < w; x += cw) {
for (let y = 0; y < h; y += ch) {
s.translate(x, y)
s.rotate(s.noise(x * noiseScaleSpace, y * noiseScaleSpace, s.frameCount * noiseScaleTime) * 180)
s.line(5, ch / 2, cw - 5, ch / 2)
s.resetMatrix() // reset translate/transform/scale for next interation
}
}
};
s.keyPressed = function ({key}) {
if (key === 's') {
s.pixelDensity(10)
// s.pixelDensity(10) sets how many actual pixels are rendered per pixel unit
// we temporarily increase this to scale up our image for export
s.draw()
s.saveCanvas('image', 'png')
s.pixelDensity(s.displayDensity()) // reset pixel density
}
}
})
Insert cell
Insert cell
Insert cell
Insert cell
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