Go to: Synopsis. Return value. Keywords. Related. Flags. MEL examples.
 polyInfo [-edgeToFace] [-edgeToVertex] [-faceNormals] [-faceToEdge] [-faceToVertex] [-invalidEdges] [-invalidVertices] [-laminaFaces] [-nonManifoldEdges] [-nonManifoldUVEdges] [-nonManifoldUVs] [-nonManifoldVertices] [-vertexToEdge] [-vertexToFace]   
polyInfo is NOT undoable, NOT queryable, and NOT editable.
Command queries topological information on polygonal objects and components. So, the command will require the following to be specified: - selection list to query| string | Components | 
| Long name (short name) | Argument types | Properties | ||
|---|---|---|---|---|
| -edgeToFace(-ef) |  |   | ||
| 
 | ||||
| -edgeToVertex(-ev) |  |   | ||
| 
 | ||||
| -faceNormals(-fn) |  |   | ||
| 
 | ||||
| -faceToEdge(-fe) |  |   | ||
| 
 | ||||
| -faceToVertex(-fv) |  |   | ||
| 
 | ||||
| -invalidEdges(-ie) |  |   | ||
| 
 | ||||
| -invalidVertices(-iv) |  |   | ||
| 
 | ||||
| -laminaFaces(-lf) |  |   | ||
| 
 | ||||
| -nonManifoldEdges(-nme) |  |   | ||
| 
 | ||||
| -nonManifoldUVEdges(-nue) |  |   | ||
| 
 | ||||
| -nonManifoldUVs(-nuv) |  |   | ||
| 
 | ||||
| -nonManifoldVertices(-nmv) |  |   | ||
| 
 | ||||
| -vertexToEdge(-ve) |  |   | ||
| 
 | ||||
| -vertexToFace(-vf) |  |   | ||
| 
 | ||||
|  Flag can appear in Create mode of command |  Flag can appear in Edit mode of command | 
|  Flag can appear in Query mode of command |  Flag can be used more than once in a command. | 
// To find all non-manifold edges on a polygonal object called pPlane1 polyInfo -nme; // Result: pPlane1.e[74] // // To find all non-manifold vertices on a polygonal object called pPlane1 polyInfo -nmv; // Result: pPlane1.vtx[38] pPlane1.vtx[49] //