done renaming
This commit is contained in:
12
Lektion 1/Systemvariablen/Mitte/Mitte.pde
Normal file
12
Lektion 1/Systemvariablen/Mitte/Mitte.pde
Normal file
@@ -0,0 +1,12 @@
|
||||
void setup()
|
||||
{
|
||||
size(111, 77);
|
||||
surface.setResizable(true);
|
||||
}
|
||||
void draw()
|
||||
{
|
||||
// Beim übertragen richtige Fenstergröße (111 x 77) in die main (setup) Methode eintragen und surface.setResizable(true) setzen
|
||||
background(40, 40, 40, 256);
|
||||
circle(width/2, height/2,50);
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user