CroProgrammer
Grünschnabel
Hallo!
Wisst ihr vll. wie man Eckpunkte von einem Polygon Fett zeichnet?
MFG
Wisst ihr vll. wie man Eckpunkte von einem Polygon Fett zeichnet?
MFG
Folge dem Video um zu sehen, wie unsere Website als Web-App auf dem Startbildschirm installiert werden kann.
Anmerkung: Diese Funktion ist in einigen Browsern möglicherweise nicht verfügbar.
Graphics g;
for(int i=0; i < x.length; i++){
g.fillOval(x[i]-breite/2,y[i]-hoehe/2,breite,hoehe);
}
public void paint(Graphics g){
Graphics2D g2 = (Graphics2D) g;
int[] x = {10,10,50,50};
int[] y = {10,80,80,10};
Polygon poly = new Polygon(x,y,4);
g2.drawPolygon(poly);
for(int i=0; i < x.length; i++){
g2.fillOval(x[i]-5,y[i]-5,10,10);
}
}
Graphics g = jPanel1.getGraphics();
Polygon p =new Polygon();
p.addPoint(30, 40);
p.addPoint(50, 50);
p.addPoint(90, 90);
g.drawPolygon(p);
Und diese Eckpunkte möchte ich jetzt Fett anzeigen lassen!