Compares two Polygonal Geometry objects with a fine control on what to compare.If no objects are specified in the command line, then the objects from the active list are used.Default behaviour is to compare all flags.Use MEL script polyCompareTwoObjects.mel to get formatted output from this command.
Long name (short name) | Argument Types | Properties | |
---|---|---|---|
colorSetIndices (ic) | bool | ||
|
|||
colorSets (c) | bool | ||
|
|||
edges (e) | bool | ||
|
|||
faceDesc (fd) | bool | ||
Compare poly1, poly2 for matching Face Descriptions. Face descriptions describe the topology of a face, for example number and orientation of edges, number of topology of any holes in the face etc. |
|||
userNormals (un) | bool | ||
|
|||
uvSetIndices (iuv) | bool | ||
|
|||
uvSets (uv) | bool | ||
|
|||
vertices (v) | bool | ||
|
Derived from mel command maya.cmds.polyCompare
Example:
import pymel.core as pm
import maya.cmds as cmds
pm.polySphere()
pm.polySphere()
pm.select( cl=True )
pm.select( 'pSphere1', 'pSphere2', r=True )
pm.polyCompare()