Go to: Synopsis. Return value. Flags. Python examples.
subdMapSewMove(
selectionList
, [caching=boolean], [constructionHistory=boolean], [limitPieceSize=boolean], [name=string], [nodeState=int], [numberFaces=int], [worldSpace=boolean])
Note: Strings representing object names and arguments must be separated by commas. This is not depicted in the synopsis.
subdMapSewMove is undoable, queryable, and editable.
This command can be used to Move and Sew together separate UV pieces
along geometric edges. UV pieces that correspond to the same geometric
edge, are merged together by moving the smaller piece to the larger
one.
The argument is a UV selection list.
In query mode, return type is based on queried flag.
caching, constructionHistory, limitPieceSize, name, nodeState, numberFaces, worldSpace
| Long name (short name) |
Argument types |
Properties |
|
| Common flags |
constructionHistory(ch)
|
boolean
|
|
|
Turn the construction history on or off.
|
|
limitPieceSize(lps)
|
boolean
|
 
|
|
When on, this flag specifies that the face number limit
described above should be used.
|
|
name(n)
|
string
|
|
|
Sets the name of the newly-created node. If it contains
namespace path, the new node will be created under the
specified namespace; if the namespace does not exist, it
will be created.
|
|
numberFaces(nf)
|
int
|
 
|
|
Maximum number of faces in a UV piece. When trying to
combine two UV pieces into a single one, the merge operation is
rejected if the smaller piece has more faces than the number specified
by this flag.
This flag is only used when limitPieceSize is set to on.
|
|
worldSpace(ws)
|
boolean
|
 
|
|
If true, performs the operation in world space coordinates as
opposed to local space.
|
|
| Advanced flags |
caching(cch)
|
boolean
|
 
|
|
Modifies the node caching mode. See the node documentation for more information.
Note: For advanced users only.
|
|
nodeState(nds)
|
int
|
 
|
|
Modifies the node state. See the node documentation for more information.
Note: For advanced users only.
|
|
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.
|
import maya.cmds as cmds
# Create a subd sphere with default UVs.
import maya.mel as mel
mel.eval( "createSubdSphere" )
# Automatic projections with 6 planes.
cmds.subdAutoProjection( 'subdivSphere1.smf[*][*]' )
# Select the seams
cmds.select( 'subdivSphere1.sme[0:1][67108864]', 'subdivSphere1.sme[256][67108867]', 'subdivSphere1.sme[513][67108864]' )
# merge them, with the appropriate move.
cmds.subdMapSewMove()