Line in top right corner with rect()
in
Programming Questions
•
1 month ago
If I use the below code to draw a border, I get a diagonal line in the top right corner with the same color as the background. How do I make that little line go away?
- for(int i = 0;i < 4;i++) {
- rect(200+i,200+i,200-(i*2),200-(i*2));
- }
1