All
Strangely enough I have never done the following. I need to convert a TriangleArray to a TriangleStripArray. How does one do this type of thing???
You need to calculate the new vertices. Check how the real positions are, but let's assume, it is the following:
1 2 3 4 5 6 7 8 9 10 11 12 13 14
| TiangleArray: TiangleStripArray:
3 4 4 3 +--------+ +--------+ |\ | |\ | | \ | | \ | | \ | | \ | | \ | | \ | | \ | | \ | | \ | | \ | | \ | | \ | | \| | \| +--------+ +--------+ 1 2 1 2 |
Just calculate the right vertices for the other format and it should be done.