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.
Long name (short name) | Argument Types | Properties | |
---|---|---|---|
allValues (a) | bool | ||
|
|||
color (c) | bool | ||
|
|||
colorDesc (cd) | bool | ||
|
|||
edge (e) | bool | ||
|
|||
edgeFace (ef) | bool | ||
|
|||
face (f) | bool | ||
|
|||
faceNorm (fn) | bool | ||
|
|||
force (fo) | bool | ||
|
|||
group (g) | bool | ||
|
|||
noOutput (no) | bool | ||
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 commandFlag can have multiple arguments, passed either as a tuple or a list. |
|||
normDesc (nd) | bool | ||
|
|||
outputFile (of) | unicode | ||
triangle (t) | bool | ||
|
|||
uvDesc (uvd) | bool | ||
|
|||
uvValue (uv) | bool | ||
|
|||
vert (v) | bool | ||
|
|||
vertEdge (ve) | bool | ||
|
|||
vertNorm (vn) | bool | ||
|
Derived from mel command maya.cmds.polyOutput
Example:
import pymel.core as pm
import maya.cmds as cmds
pm.polyPlane()
pm.polyOutput( a=True )
# If a polygon operation is performed such as Add Divisions:
pm.polySubdivideFacet('pPlane1', dv=1, m=0, ch=1)
# then the command can get information on geometry data feeding into the polySubdFace1 node.
pm.polyOutput( 'polySubdFace1.inputPolymesh' )
# The command can also get information on geometry data coming out of the
# polySubdFace1 node.
pm.polyOutput( 'polySubdFace1.output' )