Advertisement
fosterbl

lines Processing for loop example

Oct 4th, 2019
188
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.13 KB | None | 0 0
  1. void setup() {
  2.   size(100, 100);
  3.   for (int lineX = 25; lineX <= 75; lineX += 25) {
  4.     line(lineX, 0, lineX, height);
  5.   }
  6. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement