xxxxxxxxxx
// Kendrick Hayman
// Very simple Example of functions
int a = width/2;
int b = height/2;
void setup() {
fullScreen();
}
void draw() {
background(random(30));
CashMeOutside(a+200,b+250);
CashMeOutside(20,20);
CashMeOutside(1000,1000);
CashMeOutside(20,250);
CashMeOutside(700,250);
CashMeOutside(1400,1400);
CashMeOutside(500,500);
CashMeOutside(123,123);
}
void CashMeOutside(int x, int b) {
fill(195,200,0);
ellipse(b,a,200,200);
}