Skip to content

Instantly share code, notes, and snippets.

View christo's full-sized avatar
💭
follows you

Chris Mountford christo

💭
follows you
View GitHub Profile
@christo
christo / mandelbrot.p5js.js
Created October 22, 2025 06:51
basic mandelbrot for p5js
const MAXI = 360; // bail out after this many
const colourScale = 28;
let scaling = 0.003;
let xOffset = 2.6;
let yOffset = 1.6;
function setup() {
createCanvas(1400, 1050);
colorMode(HSB);
background(0);