xxxxxxxxxx
42
// The Coding Train / Daniel Shiffman
// Video: https://youtu.be/3tTZlTq4Cxs
let angle = 0;
let love;
function setup() {
createCanvas(400, 300, WEBGL);
// Add noStroke() to eliminate the wireframe
noStroke();
// Graphics object doesn't need to be square
love = createGraphics(300, 200);
//love.background(255, 100);
love.fill(255);
love.textAlign(CENTER);
love.textSize(64);
love.text('love', 150, 100);
}
function draw() {
background(0);
// lights() will add both ambient and directional light
lights();
// ambientLight(100);
// directionalLight(255, 255, 255, 0, 0, 1);
rotateX(angle);
rotateY(angle * 1.3);
rotateZ(angle * 0.7);
// texture(love);
// box(100);
texture(love);
plane(300, 300);
angle += 0.03;
}