I'm currently working on creating an equilateral triangle using three.js, but it seems like what I've created is a bit too tall. My vertices are defined as follows:
new THREE.Vector3(0, 0, 0),
new THREE.Vector3(4, 0, 0),
new THREE.Vector3(2, 4, 0)
Check out this fiddle to see what I have so far: http://jsfiddle.net/dkrotts/9d79ewff/. Any suggestions on how I can adjust this to create a triangle with equal sides?