Command query’s topological information on polygonal objects and components. So, the command will require the following to be specified: - selection list to query
Long name (short name) | Argument Types | Properties | |
---|---|---|---|
edgeToFace (ef) | bool | ||
|
|||
edgeToVertex (ev) | bool | ||
|
|||
faceNormals (fn) | bool | ||
Returns face normals of the specified object. If faces are selected the command returns the face normals of selected faces. Else it returns the face normals of all the faces of the object.Flag can appear in Create mode of commandFlag can have multiple arguments, passed either as a tuple or a list. |
|||
faceToEdge (fe) | bool | ||
|
|||
faceToVertex (fv) | bool | ||
|
|||
laminaFaces (lf) | bool | ||
|
|||
nonManifoldEdges (nme) | bool | ||
|
|||
nonManifoldVertices (nmv) | bool | ||
|
|||
vertexToEdge (ve) | bool | ||
|
|||
vertexToFace (vf) | bool | ||
|
Derived from mel command maya.cmds.polyInfo
Example:
import pymel.core as pm
import maya.cmds as cmds
# To find all non-manifold edges on a polygonal object called pPlane1
pm.polyInfo( nme=True )
pPlane1.e[74]
# To find all non-manifold vertices on a polygonal object called pPlane1
pm.polyInfo( nmv=True )
pPlane1.vtx[38] pPlane1.vtx[49]