Background(255);
StrokeWeight(3);
Stroke(128);
for(int i = 0; i < 200; i++)
{
double x1 = Random(0, Width);
double y1 = Random(0, Height);
double x2 = Random(0, Width);
double y2 = Random(0, Height);
Line(x1, y1, x2, y2);
}
Background(255);
StrokeWeight(3);
Stroke(128);
double x1 = Random(0, Width);
double y1 = Random(0, Height);
for(int i = 0; i < 80; i++)
{
double x2 = Random(0, Width);
double y2 = Random(0, Height);
Line(x1, y1, x2, y2);
x1 = x2;
y1 = y2;
}
Background(255);
StrokeWeight(3);
Stroke(128);
double x1 = Random(0, Width);
double y1 = Random(0, Height);
Timer = Draw;
void Draw()
{
double x2 = Random(0, Width);
double y2 = Random(0, Height);
Line(x1, y1, x2, y2);
x1 = x2;
y1 = y2;
}