Aktionen

Benutzer

Victor: Unterschied zwischen den Versionen

Aus exmediawiki

Victor (Diskussion | Beiträge)
Keine Bearbeitungszusammenfassung
Victor (Diskussion | Beiträge)
Keine Bearbeitungszusammenfassung
Zeile 1: Zeile 1:
MATERIALTABLEAU
[[Datei:Photo 2021-02-01 15-38-51.jpg|mini]]
[[Datei:Photo 2021-02-01 15-38-51.jpg|mini]]


P5 CODING EXAMPLE:
P5 CODING EXAMPLE:
Zeile 15: Zeile 34:
   box(466, 70, -5);
   box(466, 70, -5);
}
}


[[Datei:P5 Coding Example.mov|mini]]
[[Datei:P5 Coding Example.mov|mini]]

Version vom 6. April 2021, 02:27 Uhr

MATERIALTABLEAU










P5 CODING EXAMPLE:

function setup() {

 createCanvas(100, 100, WEBGL);

}

function draw() {

 background(0);
 noFill();
 stroke(100, 100, 240);
 rotateX(frameCount * 0.01);
 rotateY(frameCount * 2.01);
 box(466, 70, -5);

}