UP PREVIOUS NEXT -- TIE

Exercice 3: Graphisme simple (plus de rings)

Dessinez 3 bagues et changez le texte dans l'exemple Ring

Etape 3.a: Il faut modifier la méthode paint


public void paint (Graphics g) {
// Draw a yellow ring

g.setColor (Color.yellow);
g.drawOval (100,50,50,50);
.....
.....


UP PREVIOUS NEXT -- TIE