Aktionen

Benutzer

Victor: Unterschied zwischen den Versionen

Aus exmediawiki

Zeile 36: Zeile 36:
 
}
 
}
 
[[Datei:P5 Coding Example.mov|mini]]
 
[[Datei:P5 Coding Example.mov|mini]]
 
[[Datei:Bildschirmfoto 2021-04-06 um 03.41.26|mini]]
 

Version vom 6. April 2021, 03:44 Uhr

MATERIALTABLEAU

Photo 2021-02-01 15-38-51.jpg


Photo 2021-04-06 03-34-42.jpg









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);

}