0
因此,我正在使用Processing,我希望程序繪製一個橢圓,然後等待2秒,然後繪製另一個不同的橢圓。我怎樣才能做到這一點? 這些都是我想的省略號得出:繪製橢圓等待幾秒鐘,並在處理中繪製另一個
ellipse(350, 250, 160, 120); // big horizontal ellipse
strokeWeight(8); // stroke thickness
stroke(100); // stroke color
noFill(); // ellipse is transparent inside
ellipse(350, 250, 50, 120); // vertical ellipse
strokeWeight(8);
stroke(100);
noFill();
ellipse(350, 220, 130, 50); // small horizontal ellipse
strokeWeight(8);
stroke(100);
noFill();
你有沒有想過這個想法? –