Go to: Synopsis. Return value. Flags. MEL examples.

Synopsis

polyOutput [-allValues] [-color] [-colorDesc] [-edge] [-edgeFace] [-face] [-faceNorm] [-force] [-group] [-noOutput] [-normDesc] [-triangle] [-uvDesc] [-uvValue] [-vert] [-vertEdge] [-vertNorm] poly poly...

polyOutput is undoable, NOT queryable, and NOT editable.

Dumps a description of internal memory representation of poly objects. If no objects are specified in the command line, then the objects from the active list are used. If information on the geometry in the history of a poly shape is desired, then the plug of interest needs to be specified in the command line. Default behaviour is to print only a summary. Use the flags above to get more details on a specific part of the object.

Return value

None

Flags

allValues, color, colorDesc, edge, edgeFace, face, faceNorm, force, group, noOutput, normDesc, triangle, uvDesc, uvValue, vert, vertEdge, vertNorm
Long name (short name) Argument types Properties
-force(-fo) create
Force evaluation of missing pieces before printing.
-vert(-v) create
Prints the vertex positions.
-edge(-e) create
Print the edge description.
-edgeFace(-ef) create
Prints the edge to face adjascency list. Only available if the information is already computed on the object.
-vertEdge(-ve) create
Prints the vertex to edge adjascency list. Only available if the information is already computed on the object.
-face(-f) create
Print the faces description
-triangle(-t) create
Prints the triangles per face. Only available if the information is already computed on the object.
-faceNorm(-fn) create
Prints the normals per face. Only available if the information is already computed on the object.
-vertNorm(-vn) create
Prints the normals per vertex. Only available if the information is already computed on the object.
-normDesc(-nd) create
Prints the normals per vertex description. Each integer is an entry in the vertNorm array. Only available if the information is already computed on the object.
-group(-g) create
Print the groups of the object.
-uvValue(-uv) create
Prints the UV positions. In case of multiple UV sets, all sets are printed.
-uvDesc(-uvd) create
Print the UV description. Each integer is an entry in the uvValue array.
-color(-c) create
Prints the color per vertex. In case of multiple sets, all sets are printed.
-colorDesc(-cd) create
Print the color per vertex description. Each integer is an entry in the color array.
-allValues(-a) create
Shortcut for setting all the flags above
-noOutput(-no) create
Dont output any data. Would be useful if you want to just evaluate the data, for testing purposes.

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.

MEL examples

polyPlane;
polyOutput -a;

// If a polygon operation is performed such as subdividing it:
polySubdivideFacet -dv 1 -m 0 -ch 1 pPlane1;

// then the command can get information on geometry data feeding into the polySubdFace1 node.
polyOutput polySubdFace1.inputPolymesh;

// Also: It can get information on geometry data coming out of the
// polySubdFace1 node.
polyOutput polySubdFace1.output;