Go to: Synopsis. Return value. Flags. MEL examples.

Synopsis

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.

Return value

selectionItem[]List of poly components

Flags

nonOverlappingComponents, overlappingComponents
Long name (short name) Argument types Properties
-nonOverlappingComponents(-noc) create
Return non-overlapping components based on selected/specified components
-overlappingComponents(-oc) create
Return overlapping components based on selected/specified components

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.

MEL examples

// 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] //