I have a face4 (quad face), and i need to get two face3 (triangle face) without overlapping.
Asked
Active
Viewed 1,047 times
3
-
Just want to make clear, face4 has been [removed](http://stackoverflow.com/a/18654083/4405465)! – Hasse Björk Feb 25 '16 at 19:42
2 Answers
6
A face4 with vertices a,b,c,d is equivalent to two face3's. One with vertices a,b,c and the other with vertices a,c,d.

gaitat
- 12,449
- 4
- 52
- 76
4
There is a utility that will triangulate quads for you:
THREE.GeometryUtils.triangulateQuads( geometry );
EDIT: This method no longer exists.
three.js r.70

WestLangley
- 102,557
- 10
- 276
- 276