// A2-06 - Write a function with three or more parameters and visually demonstrate its flexibility. //setup method void setup (){ size (350,350); background (238,147,30); } //draw method void draw(){ smooth(); drawCirculoLoco(random(35),random(255),random(255),random(255),random(width),random(height)); } //method that uses 6 parameters for drawing crazy circles! void drawCirculoLoco(float s,float c1,float c2,float c3,float x,float y){ pushMatrix(); translate(x,y); fill (c1,c2,c3); ellipse (0,0,s,s); popMatrix(); }