xxxxxxxxxx
42
x=-300
function setup() {
createCanvas(700, 700, WEBGL);
background(240)
noStroke();
frameRate(1)
}
function draw() {
background(240)
ambientLight(200);
directionalLight(255, 0, 0, 0.25, 0.25, 0);
rotateX(random(1,200));
rotateY(random(1,200));
let shades = ["#F5BE00", "#2F2F6B", "#C4001E", "#3F5E2D"];
translate(0,0)
let shade1 = random(shades);
c1 = color(shade1);
fill("#F5BE00");
box(50,200,50);
translate(-100,0)
let shade2 = random(shades);
c2 = color(shade2);;
fill("#2F2F6B");
cone(50,50,4);
translate(-100,0)
let shade3 = random(shades);
c3 = color(shade3);
fill("#C4001E");
cylinder(25,200)
// noLoop();
}