It keeps saying there’s a syntax error on the ‘void house’ line ???
I’ve tried swapping the order, adding and taking away floats , putting in comers, spaces, semi colons, brackets inside other brackets XD
I’ve looked at the flower example and read through the tutorial but cant find what I’m doing wrong?
Am I not defining the function correctly?
void draw() {
house(width/2, width/2, 30, 20);
}
void house(float x, float y float wide, float tall) {
fill(200, 200, 0);
rect(x, y, wide, tall);
}