I encountered an issue with line
geometry.vertices.push(new THREE.Vertex(vector));
In the earlier version of Three.js, r36, this line was functioning.
var vector = new THREE.Vector3(-300 + x/4, 240 - y, 0);
geometry.vertices.push(new THREE.Vertex(vector));
However, in the latest version, r69, it seems to be causing trouble. Can anyone provide assistance?