void setup() { size(400, 400); background(0); stroke(255); for (int x = 0; x < width; x++) { float y = noise(x * 0.01) * height; point(x, y); } }