Hepinize merhaba arkadaşlar bir proje ödevim var javada eclipse üzerinden daire kodlayarak ismimizin ilk 2 harfini çizmemiz gerekiyor hocanın bize attıgı kod bu şekilde
final int HEIGHT = 10;
//
final int X_0 = 50; // x of the center of the upper-left circle
final int Y_0 = 50; // y of the center of the upper-left circle
final int RADIUS = 5; // radius of the circles
//
int circleNumberOf = HEIGHT;
Circle cTmp;
for (int i = 0; i < circleNumberOf; i++) {
cTmp = new Circle(X_0 + 0 * i, Y_0 + 20 * i, RADIUS);
cTmp.setColorFill(SVGLib.COLOR_CONIFER);
cTmp.setColorStroke(SVGLib.COLOR_BLACK);
cTmp.setStrokeWidth(5);
paper.add(cTmp);
}
bunu nasıl modifiye etmem gerekiyor yardımcı olur musunuz
final int HEIGHT = 10;
//
final int X_0 = 50; // x of the center of the upper-left circle
final int Y_0 = 50; // y of the center of the upper-left circle
final int RADIUS = 5; // radius of the circles
//
int circleNumberOf = HEIGHT;
Circle cTmp;
for (int i = 0; i < circleNumberOf; i++) {
cTmp = new Circle(X_0 + 0 * i, Y_0 + 20 * i, RADIUS);
cTmp.setColorFill(SVGLib.COLOR_CONIFER);
cTmp.setColorStroke(SVGLib.COLOR_BLACK);
cTmp.setStrokeWidth(5);
paper.add(cTmp);
}
bunu nasıl modifiye etmem gerekiyor yardımcı olur musunuz