pymel.core.modeling.polyUVOverlap¶
- polyUVOverlap(*args, **kwargs)¶
Return the required result on the specified components. If no objects are specified in the command line, then components from selection list will be used.
Flags:
Long Name / Short Name Argument Types Properties nonOverlappingComponents / noc bool Return non-overlapping components based on selected/specified components overlappingComponents / oc bool Return overlapping components based on selected/specified components Flag can have multiple arguments, passed either as a tuple or a list. Derived from mel command maya.cmds.polyUVOverlap
Example:
- ::
import pymel.core as pm
# Return UV overlapping components from selection list pm.polyUVOverlap( oc=True ) [pCubeShape1.f[1], pCubeShape1.f[2]]
# Return UV non-overlapping components from specified components pm.polyUVOverlap(‘pCube1.f[0:5]’, noc=True) [pCubeShape1.f[0], pCubeShape1.f[3], pCubeShape1.f[4], pCubeShape1.f[5]]