Go to: Synopsis. Return value. Flags. MEL examples.
polyUVOverlap [-nonOverlappingComponents] [-overlappingComponents]
selectionItem[]
polyUVOverlap is undoable, NOT queryable, and NOT editable.
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.
selectionItem[] | List of poly components |
nonOverlappingComponents, overlappingComponents
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.
|
// Return UV overlapping components from selection list
//
polyUVOverlap -oc;
// Result: pCubeShape1.f[1] pCubeShape1.f[2] //
// Return UV non-overlapping components from specified components
//
polyUVOverlap -noc pCube1.f[0:5];
// Result: pCubeShape1.f[0] pCubeShape1.f[3] pCubeShape1.f[4] pCubeShape1.f[5] //