___ tags 期中作品 # 期中作品 ```javascript= function setup() { createCanvas(windowWidth, windowHeight); background("#93C1CC"); } function draw() { background("#93C1CC"); var count = 0 for(var x=0; x<width;x=x+200){ for(var y=0; y<height;y=y+200){ count=count+1 strokeWeight(7) noFill() stroke("#FDB215") ellipse(100+x,100+y,200) stroke("#FDB215") rect(3+x,3+y,300) stroke("#4C9292") rectMode(CENTER) rect(300+x,300+y,200) stroke("#CC3B4C") triangle(102+x,64+y,76+x,110+y,130+x,110+y); stroke("#CC3B4C") triangle(102+x,64+y,76+x,110+y,130+x,110+y); stroke("#CC3B4C") ellipse(100+x+100,100+y,100) stroke("#FF1100") ellipse(100+x+100,100+y,100) stroke("#FF1100") ellipse(100+x+100,100+y,100) } } } ``` ![](<iframe src="https://openprocessing.org/sketch/1530941/embed/" width="600" height="600"></iframe>)