Beginner's Problem
in
Programming Questions
•
2 years ago
So, I can't figure this out. When I try to run it, there are weird lines on the sides that I can't get rid of:
void setup() {background(0, 0, 0);size(1280, 800);smooth();}
void draw() {{fill(0, 0, 0, 10);rect(0, 0, 1280, 800);}{line(640, 800, random(0, 1280), random(0, 800));stroke(random(150, 220), random(150, 220), 0);strokeWeight(5);}}
Please help...
2