1
私は処理中に10個の円のピラミッドを描こうとしていますが、このコードをクリーンなループに凝縮する良い方法を見つけることはできません。 lights[c].display()
関数は、現在の訳文の中央に楕円とテキストを単に描きます。 gap
変数を、円の間隔を更新するために使用できるものにしておきたいと思います。私はちょうどピラミッドの結果となる方法で行と列をインクリメントする方法を考え出していない。常に10のサークルがあります。ご協力いただきありがとうございます!Processing/Javaの円のピラミッドのループ
int gap = 30;
public void display() {
int c = 0;
pushMatrix();
translate(0, 0);
lights[c++].display();
popMatrix();
pushMatrix();
translate(-gap, 2*gap);
lights[c++].display();
popMatrix();
pushMatrix();
translate(gap, 2*gap);
lights[c++].display();
popMatrix();
pushMatrix();
translate(-2*gap, 4*gap);
lights[c++].display();
popMatrix();
pushMatrix();
translate(0, 4*gap);
lights[c++].display();
popMatrix();
pushMatrix();
translate(2*gap, 4*gap);
lights[c++].display();
popMatrix();
pushMatrix();
translate(-3*gap, 6*gap);
lights[c++].display();
popMatrix();
pushMatrix();
translate(-gap, 6*gap);
lights[c++].display();
popMatrix();
pushMatrix();
translate(gap, 6*gap);
lights[c++].display();
popMatrix();
pushMatrix();
translate(3*gap, 6*gap);
lights[c++].display();
popMatrix();
}
から開始することができます! –