Go to: Synopsis. Return value. Keywords. Related. Python examples.

Synopsis

polyEditUVShell()

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

polyEditUVShell is undoable, queryable, and NOT editable.

Command edits uv shells on polygonal objects. When used with the query flag, it returns the transformation values associated with the specified components.

Return value

booleanSuccess or Failure.

In query mode, return type is based on queried flag.

Keywords

poly, editUV, tweakUV, uvEditing, uvShells

Related

polyClipboard, polyCylindricalProjection, polyForceUV, polyMapCut, polyMapDel, polyMapSew, polyMoveFacetUV, polyMoveUV, polyPlanarProjection, polyProjection, polySphericalProjection, polyUVSet, untangleUV

Python examples

import maya.cmds as cmds

# To query the u and v values of selected uvs:
cmds.polyEditUVShell( query=True )
# To tweak the u and v values of selected uvs:
cmds.polyEditUVShell( relative=True, uValue=0.05925926, vValue=0.05555556 )
# To rotate selected uv points about a pivot:
cmds.polyEditUVShell( pivotU=0.5, pivotV=0.5, angle=-15 )