Skip to content

Instantly share code, notes, and snippets.

@zamfi
Created February 4, 2022 01:42
Show Gist options
  • Save zamfi/a7ab31364451c211ee12dea6a500dc63 to your computer and use it in GitHub Desktop.
Save zamfi/a7ab31364451c211ee12dea6a500dc63 to your computer and use it in GitHub Desktop.
// "spaced colored squares" -- array edition
colorMode(HSB);
noFill();
var SIZE = 40;
var xs = [50, 100, 150, 200, 250];
var y = height/2 - SIZE/2;
for (var i = 0; i < xs.length; i = i + 1) {
stroke(40,100,100);
rect(xs[i], y, SIZE, SIZE);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment