View previous topic :: View next topic |
Author |
Message |
Mille Member
Joined: 21 Mar 2005 Posts: 35 Location: Denmark
|
Posted: Tue Mar 22, 2005 10:13 am Post subject: Coords in the *dmf format |
|
|
I'm in the process of coding a parser to *dmf files. In the "help" it says for the polygon info:
"# of vertices,textureID,vertice index values,uv values (2 per vertice))"
Maybe I'm foolish but doese this mean tha the UV data is stored like this:
X; X; X; X; X; u; u; u; v; v; v;
or like this:
X; X; X; X; X; u; v; u; v; u; v;
A rendering test would solve the problem, but I'm not quit there yet ..
thanks .. |
|
Back to top |
|
|
Jeroen Site Admin
Joined: 07 Aug 2004 Posts: 5332 Location: The Netherlands
|
Posted: Tue Mar 22, 2005 10:26 am Post subject: |
|
|
The latter (u,v,u,v,u,v) is correct. |
|
Back to top |
|
|
|