Can a cylinder be resized along the Y-axis starting from a particular point?
Instead of the cylinder expanding from its center in both directions to the new scale, is it possible for it to grow upwards/downwards only like a bar chart?
Current code :
function animate() {
render();
cylinder.scale.y += 0.1;
requestAnimationFrame(animate);
}