In my three.js project, I created a 12*12 plane and attempted to modify its vertices between two renderings without success.
Despite adding the following code, no changes were observed:
ground.geometry.dynamic = true;
ground.geometry.__dirtyVertices = true;
ground.geometry.computeCentroids();
View the code snippet here: http://jsfiddle.net/vpBEG/2/
Thank you in advance,