Psst.. new poll here.
Psst.. new forums here.
Microsoft is blocking us again (TY IP Reputation!) so just use oauth login instead. :)
Paste
Pasted as Java by Kodzik ( 13 years ago )
class NAZWA extends JApplet {
Font f;
public void init() {
setSize(ilechcesz, ilechcesz);
f = new Font("Arial", Font.ITALIC, 24); // rodzina czcionek. styl(tutaj kursywa). rozmiar
}
public void paint(Graphics g) {
g.setFont(f); // ustawia aktualną czcionkę
g.drawOval(40, 40, 40, 40); // rysuje kółko
g.drawString("aaa", 100, 100); // napisanie aaa koordynaty 100, 100
g.setColor(Color.RED); // zmiana koloru
g.fillOval(80, 80, 40, 40); // wypełnia kółko
int []x = new int[3];
int []y = new int[3];
// koordynaty zawsze liczone od górnego lewego rogu
x[0] = 10; y[0] = 10; // koordynaty punktu 1
x[1] = 20; y[1] = 20; // koordynaty punktu 2
x[2] = 30; y[2] = 30; // koordynaty punktu 3
g.drawPolygon(x, y, x.length); // tablica wierzchołków x, potem y, potem ilośc punktów
}
}
Revise this Paste
Parent: 61689