DIP - Programmierung Teil 2 Übung1: Unterschied zwischen den Versionen

Aus DDSWiki
Wechseln zu: Navigation, Suche
(Interessante Funktionen für diese Aufgabe)
Zeile 14: Zeile 14:
  
 
<iframe key="p5js" path="flotorious/sketches/uBvA1Mv3T" w="1000" h="800"></iframe>
 
<iframe key="p5js" path="flotorious/sketches/uBvA1Mv3T" w="1000" h="800"></iframe>
 +
 +
<pre>
 +
function setup() {
 +
  createCanvas(400, 400);
 +
  background(200);
 +
  circle(200, 200, 200);
 +
  circle(150, 175, 50);
 +
  circle(250, 175, 50);
 +
  line(160, 250, 240, 250);
 +
}
 +
</pre>
 +
 +
 +
<pre>
 +
function setup() {
 +
  createCanvas(400, 400);
 +
}
 +
function draw() {
 +
  background(220);
 +
  circle(200, 200, 300);
 +
  line (120, 250, 280, 250);
 +
  circle (150, 140, 30);
 +
  circle (250, 140, 30);
 +
}
 +
</pre>

Version vom 12. August 2020, 11:01 Uhr

Smile1.png

Aufgabe

  • Generiere dieses Gesicht (oben) in p5js!

Interessante Funktionen für diese Aufgabe

Gemeinsam erarbeitete Lösung

function setup() {
  createCanvas(400, 400);
  background(200);
  circle(200, 200, 200);
  circle(150, 175, 50);
  circle(250, 175, 50);
  line(160, 250, 240, 250);
}


function setup() {
  createCanvas(400, 400);
}
function draw() {
  background(220);
  circle(200, 200, 300);
  line (120, 250, 280, 250);
  circle (150, 140, 30);
  circle (250, 140, 30);
}