This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
int rectHeight = 50; | |
int rectWidth = rectHeight*3; | |
int space = rectHeight/2; | |
int times = 20; | |
void setup() { | |
size(800, 600); | |
} | |
void draw() { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
color[] palette = {#69D2E7, #E0E4CC, #F38630, #F97886, #FA6900}; | |
void setup() { | |
size (800, 600); | |
background(0); | |
//frameRate(20); | |
noStroke(); | |
} | |
void draw() { |