I am trying to create an equilateral triangle using three.js. What I am coming up with appears to be a bit too tall. I am defining my vertices like so:
new THREE.Vector3(0, 0, 0),
new THREE.Vector3(4, 0, 0),
new THREE.Vector3(2, 4, 0)
Here is a fiddle with what I have so far: http://jsfiddle.net/dkrotts/9d79ewff/. How can I modify this so I have a triangle with 3 equal sides?