2023-09-24 19:32:53 +02:00

13 lines
304 B
Plaintext

beginShape (); // Dachfigur
vertex (50, 10); // Spitze
vertex (70, 30); //rechts
vertex (30, 30); //links
endShape (CLOSE);
beginShape (); // Haus
vertex (30,30); //oben links
vertex (30, 65); // unten links
vertex (70, 65); // unten rechts
vertex (70,30); // oben rechts
endShape (CLOSE);