int x=250; int y=50; void setup(){ size(400,400); background(90,78,255); //the grass fill(90,255,78); rect(0,350,10000,950); //The big part of the kite fill(x,y,70); rect(x-210,y,45,45); //The desgin inside the big kite fill(255,100,230); rect(x-210,y,25,25); //The other desgin in the big kite fill(250,50,70); rect(x-210,y,15,15); //small part of the kite fill(250,50,70); rect(x-165,y+45,20,20); //String of the kite line(x-165,y+45,200,200); }