Zusammenfassung Zeichnen
Die wichtigsten Befehle:
function setup() { createCanvas(400,400); background (255,255,255); // Rectangle noStroke(); fill(0,255,0); rect(20,40,100,200); // Kreis stroke(0,0,255); strokeWeight(5); fill(255,0,0); ellipse (200, 60, 80); }
Previous TopicNext Topic