I am writing a python script that parses a 3D model file from one format to another and noticed a problem when storing vertices. It seems like the same vertex could have different UV's in different faces.

While writing the script I assumed all vertices would have unique UV's, but now it seems like a false assumption.

Is there a general way to store faces and vertices?

It would've been nice if I had a dictionary for vertices that stores UV's, normals, and coords (won't be storing anything else for now) and a dictionary of faces that contain a list of vertices that make up the face, but it won't work if a single vertex takes on different UV values in different faces.

I've been trying to avoid storing every single vertex (like storing the vertices with the faces rather than having references to the vertices) but can't come up with a workaround.

link|improve this question

feedback

1 Answer

up vote 1 down vote accepted

If the vertex belongs to a shared edge between two faces, you need to store texture coordinates of both faces. I usually store these info at triangle level not at vertex level.

link|improve this answer
I was afraid that was the case, as I've noticed that sometimes vertices are repeated and have the same UV's so I didn't want to store too many duplicates. In any case, I have changed my storage scheme to put "face numbers" with each mesh, and then store the vertex information for each face. – Keikoku May 31 '11 at 12:43
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.