Reputation: 1764
So I have a list of faces from a single mesh. That mesh (lets call it "A") is the result of combining an unknown number of meshes (you can assume that the list of faces equals one or more whole meshes that make up "A"). I then use separate on the mesh which results in a lot of separate meshes. What would be the best way to know which of these meshes corresponds to the original set of faces?
Upvotes: 0
Views: 309
Reputation: 12208
@beardedBerry's solution usually works; the main likely problem is that some kinds of history will screw up vert colors when the mesh is split. You can use an extra UV channel in the same fashion, the UV's tend to be more survivable then the vertex colors, although (rarely) they too can go bad. Sigh.
If you want an analytical method, you can do it more or less like this:
Upvotes: 2