I am confused about the triangle strip representation of closed mesh .The vertex buffer for triangle strip representation of the a figure is shown below:
A(0,1) B(0,0) C(1,1) D(1,0)E(2,1)
vertex buffer=[A,B,C,D,E] where, T1=(A,B,C) T2=(B,C,D) T3=(C,D,E)
Now, if I have a tetrahedron with four vertex A(0,0,0),B(1,0,0),C(0,1,0) and D(0,0,1) then what would be its vertex buffer representation?
Thank you very much.