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