Having two meshes, mesh1 and mesh2, each with the same number of vertices and extrusion.
mesh1 = 5000 vertices.
mesh2 = 5000 vertices.
I transfer the vertices from mesh2 to mesh1. Then I execute:
mesh2.geometry.verticesNeedUpdate = true;
mesh2.geometry.vertices = mesh1.geometry.vertices;
Although this updates mesh2's vertices quickly without any visible animation.
I wish to see an animated transformation as mesh2 gradually morphs into mesh1, depicting the change in vertices.
In my attempts to achieve this, I have used "Tween.js" for animations like position and color. However, utilizing it to visualize the vertex transformations between mesh2 and mesh1 hasn't yielded successful results:
new TWEEN.Tween( mesh2.geometry.vertices ).to( mesh1.geometry.vertices, 1000 ).start();
Unfortunately, this method did not produce the desired outcome. Please excuse any language barriers in my explanation.