Skip to content

Commit

Permalink
Still improving visuals on windows wider than tall.
Browse files Browse the repository at this point in the history
  • Loading branch information
RepeatGitHub committed Jan 6, 2023
1 parent 93f507b commit d64dd6d
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions script.js
Original file line number Diff line number Diff line change
Expand Up @@ -1743,10 +1743,10 @@ var draw = function() {
//println(key);
if (width>height) {
fill(0,100);
rect(0,0,-1*width,height);
rect(400,0,width,height);
rect(-72,0,-1*width,height);
rect(465,0,width,height);
for (var a=0;a<4;a++) {
rect(0-a*20,0,-1*width,height);
rect(400+a*20,0,width,height);
}
}
popMatrix();
}
Expand Down

0 comments on commit d64dd6d

Please sign in to comment.