xxxxxxxxxx
69
let shad;
function setup() {
createCanvas(600, 600, WEBGL);
shad = createContactShadowRenderer();
shad.setIntensity(0.5);
shad.setShadowSamples(5);
shad.setBlurSamples(6);
shad.setBlurRadius(8);
}
function drawColumn() {
const x = random(-150, 150);
const z = random(100, 200);
let y = 50;
let ytop = random(-80, -225);
let ht = random(40, 100);
let count = 0;
while (y > ytop && count < 10) {
push();
translate(x, y - 0.5 * ht, z);
rotateY(random(PI));
scale(ht / 50);
box();
pop();
y -= ht;
ht = random(0.75 * ht, 0.9 * ht);
++count;
}
}
function draw() {
shad.draw(() => {
clear();
background(255);
stroke(180, 70);
strokeWeight(0.8);
fill(255);
camera(0, -200, height / 2 / tan(PI / 6), 0, 0, 0, 0, 1, 0);
quad(-1000, 50, -1000, 1000, 50, -1000, 1000, 50, 1000, -1000, 50, 1000);
quad(-1000, -1000, 80, 1000, -1000, 80, 1000, 1000, 80, -1000, 1000, 80);
for (let idx = 0; idx < 5; ++idx) {
drawColumn();
}
/*
for (let x = -20; x < 20; ++x) {
for (let z = 8; z < 20; ++z) {
push();
translate(10*x, 48, 10*z);
scale( 0.1 );
box();
pop();
}
}*/
});
noLoop();
}
function keyPressed() {
if (key === "s") {
save("output.png");
} else if (key === " ") {
loop();
}
}