Message 1 of 1
polySelect -eb returns none on imported objects.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
I would like to get an ordered list of the vertices on an object's border and thought polySelect with eb flag would return a desired result. Which works if I try it on a simple plane created in maya. After I exported this plane to obj, then imported it the command returns none.
Here is the example:
import maya.cmds as mc
mc.polyPlane(sx=2, sy=2) print mc.polySelect(edgeBorder=True, q=True)
This should return: [1, 0, 2, 4, 9, 11, 10, 6, 1]
If I import the same plane from obj the command will return none.
Do I miss simething?