3

I have a face4 (quad face), and i need to get two face3 (triangle face) without overlapping.

user1118321
  • 25,567
  • 4
  • 55
  • 86
Jokude
  • 73
  • 1
  • 8

2 Answers2

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