Go to: Synopsis. Return value. Flags. MEL examples.
subdMapSewMove [-constructionHistory boolean] [-limitPieceSize boolean] [-name string] [-numberFaces int]
selectionList
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.
constructionHistory, limitPieceSize, name, numberFaces
Long name (short name) |
Argument types |
Properties |
|
-limitPieceSize(-lps)
|
boolean
|
|
|
When on, this flag specifies that the face number limit
described above should be used.
|
|
-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.
|
|
Common flags |
-constructionHistory(-ch)
|
boolean
|
|
|
Turn the construction history on or off (where applicable).
Q: When queried, this flag returns an int.
|
|
-name(-n)
|
string
|
|
|
Name the resulting object.
|
|
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.
|
// Create a subd sphere with default UVs.
createSubdSphere;
// Automatic projections with 6 planes.
subdAutoProjection "subdivSphere1.smf[*][*]";
// Select the seams
select subdivSphere1.sme[0:1][67108864] subdivSphere1.sme[256][67108867] subdivSphere1.sme[513][67108864];
// merge them, with the appropriate move.
subdMapSewMove;