This file contains 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
class Metro { | |
float bpm; | |
float nextTime = 0; | |
int mode = 0; | |
int modeNum; | |
Metro(float _bpm, int _modeNum) { | |
bpm = _bpm; | |
modeNum = _modeNum; | |
} |
This file contains 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
PShape twitterBird; | |
void setup(){ | |
size(300, 300); | |
twitterBird = loadShape("twitterBird.svg"); | |
} | |
void draw(){ | |
background(245); | |
twitterBird.disableStyle(); |
This file contains 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
PFont openSans; | |
char t1 = 't'; | |
char w = 'w'; | |
char i = 'i'; | |
char t2 = 't'; | |
char t3 = 't'; | |
char e = 'e'; | |
char r = 'r'; |