move scratch

This commit is contained in:
2023-10-05 09:04:17 +02:00
parent 7e705bc6cc
commit 0134c1c663
5 changed files with 0 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
background (233,0,57); // roter Hintergrund
noStroke (); // Entfernung der Linien um Überlappung beider Figuren zu verbergen
fill (1,50,100); //blaue Färbung
beginShape (); // Vieleck mit Spitze nach oben
vertex (30,80); //linker "Fuß"
vertex (50,15); //die obere Spitze
vertex (70,80); //rechter "Fuß"
vertex (45,60); // Verbindungspunkt
endShape ();
beginShape (); //Vieleck mit Spitze nach schräg rechts
vertex (80, 40); // rechter Arm Spitze
vertex (30, 80); // linker Fuß
vertex (35, 55); // Verbindungspunkt
vertex (20, 40); // linker Arm Spitze
endShape ();