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

Synopsis

polyUVStackSimilarShells( selectionItem[] , [onlyMatch=boolean], [tolerance=float])

Note: Strings representing object names and arguments must be separated by commas. This is not depicted in the synopsis.

polyUVStackSimilarShells is undoable, NOT queryable, and NOT editable.

Stack Similar UV Shells.

Return value

string[]UVs of stacked UV Shells or target UV shells.

Flags

onlyMatch, tolerance
Long name (short name) Argument types Properties
onlyMatch(om) boolean create
If this flag is true, only match UV shells and return UVs of target UV shells but don't stack.
tolerance(to) float create
The tolerance setting for stacking how similar UV shells.

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 have multiple arguments, passed either as a tuple or a list.

Python examples

import maya.cmds as cmds

// Stack Similar UV Shells with tolerance.
cmds.polyUVStackSimilarShells(to = 0.001)