ALT function setup(){
createCanvas(400, 400)
W = width, H = height
let Noise = 0.004
for (let y = 0; y < H; y ) {
for (let x = 0; x < W; x ) {
let n = noise(x * Noise, y * Noise)
let T = n * TAU * 13
let X = x cos(T) * 30
let Y = y sin(T) * 40
stroke(abs(X-x)*20,abs(Y-y)*20,n*500)
point(X, Y)
}
}
}
✨**SketchDrop** feature is now live to let you easily upload photos/files directly from your phone via QR code.
you can also copy/paste the related @p5xjs code such as loadImage(...), loadXML with a single click in the file explorer.
ALT function setup(){
createCanvas(400, 400)
W = width, H = height
let Noise = 0.004
for (let y = 0; y < H; y ) {
for (let x = 0; x < W; x ) {
let n = noise(x * Noise, y * Noise)
let T = n * TAU * 13
let X = x cos(T) * 30
let Y = y sin(T) * 40
stroke(abs(X-x)*20,abs(Y-y)*20,n*500)
point(X, Y)
}
}
}