xxxxxxxxxx
27
// Inspired by https://twitter.com/mattdesl/status/1179008302031785984/photo/4
const ripples = 9
const lines = 7
function setup() {
createCanvas(400, 400);
noLoop()
noFill()
strokeWeight(3)
stroke("#38373C")
background("#EEEEEE");
}
function draw() {
// Circles
translate(1, 1)
for (let i = 0; i < height * 2.5; i += height * 2.5 / ripples) {
circle(width, height, i)
}
// Grid
translate(-2, -2)
for (let i = 0; i < height; i += height / lines) {
line(0, i, width, i)
line(i, 0, i, height)
}
}