pymel.core.modeling.polyCheck

polyCheck(*args, **kwargs)

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

Flags:

Long Name / Short Name Argument Types Properties
edge / e bool ../../../_images/create.gif
  Check edge descriptions. If no flag is set, a complete check is performed.
face / f bool ../../../_images/create.gif
  Check face descriptions. If no flag is set, a complete check is performed.
faceOffset / fo bool ../../../_images/create.gif
  Check face offset descriptions. If no flag is set, a complete check is performed.
openFile / of unicode ../../../_images/create.gif
  Opens a file that contains a poly description, as dumped out by the debug commands. Flag can have multiple arguments, passed either as a tuple or a list.

Derived from mel command maya.cmds.polyCheck

Example:

import pymel.core as pm

pm.polyPlane()
pm.polyCheck()
pm.polyCheck( f=True )