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

Synopsis

polyEditUVShell

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

MEL examples

// To query the u and v values of selected uvs:
polyEditUVShell -query ;
// To tweak the u and v values of selected uvs:
polyEditUVShell -relative true -uValue 0.05925926 -vValue 0.05555556 ;
// To rotate selected uv points about a pivot:
polyEditUVShell -pivotU 0.5 -pivotV 0.5 -angle -15;