I realized that subject doesn't sound like it makes any sense - but here is what I'm trying to do: I am generating two lists...one looks something like this -
[MeshUV(u'pCubeShape1.map[0]'), MeshUV(u'pCubeShape1.map[1]'), MeshUV(u'pCubeShape1.map[2]'), MeshUV(u'pCubeShape1.map[3]'), MeshUV(u'pCubeShape1.map[4]'), MeshUV(u'pCubeShape1.map[5]'), MeshUV(u'pCubeShape1.map[6]'), MeshUV(u'pCubeShape1.map[7]'), MeshUV(u'pCubeShape1.map[8]'), MeshUV(u'pCubeShape1.map[9]'), MeshUV(u'pCubeShape1.map[10]'), MeshUV(u'pCubeShape1.map[11]'), MeshUV(u'pCubeShape1.map[12]'), MeshUV(u'pCubeShape1.map[13]'), MeshUV(u'pCubeShape1.map[14]'), MeshUV(u'pCubeShape1.map[15]')] The other is something like this: [0, 0, 0, 0, 1, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 1] The two lists correspond to each other, so I'd like to sort the elements in the first list by the matching integer in the 2nd list. In this example there would only be two resulting lists of uvs, but ultimately there could be any number of resulting lists. BTW, the point of this is to sort the uvs of a given mesh into their different shells so I can perform an operation on all the shells of a mesh. Thanks! Aren -- You received this message because you are subscribed to the Google Groups "Python Programming for Autodesk Maya" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/python_inside_maya/f2705166-dc4d-47b9-a3f0-4272923fc084%40googlegroups.com. For more options, visit https://groups.google.com/d/optout.
