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

Synopsis

globalStitch [-caching boolean] [-lockSurface boolean] [-maxSeparation linear] [-modificationResistance float] [-nodeState int] [-sampling int] [-stitchCorners int] [-stitchEdges int] [-stitchPartialEdges boolean] [-stitchSmoothness int] surface surface...

globalStitch is undoable, queryable, and editable.

This command computes a globalStitch of NURBS surfaces. There should be at least one NURBS surface. The NURBS surface(s) should be untrimmed.

Return value

string[]Object name and node name

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

Flags

caching, lockSurface, maxSeparation, modificationResistance, nodeState, sampling, stitchCorners, stitchEdges, stitchPartialEdges, stitchSmoothness
Long name (short name) Argument types Properties
-stitchCorners(-sc) int createqueryedit
Stitch corners of surfaces 0 - off 1 - closest point 2 - closest knot
Default: 1
-stitchEdges(-se) int createqueryedit
Stitch edges of surfaces 0 - off 1 - closest point 2 - matching params
Default: 1
-stitchSmoothness(-ss) int createqueryedit
Set type of smoothness of edge join 0 - off 1 - tangent 2 - normal
Default: 0
-stitchPartialEdges(-spe) boolean createqueryedit
Toggle on(off) partial edge stitching
Default: false
-maxSeparation(-ms) linear createqueryedit
Maximum separation that will still be stitched
Default: 0.1
-sampling(-sam) int createqueryedit
Sampling when stitching edges
Default: 1
-modificationResistance(-mr) float createqueryedit
Modification resistance weight for surface CVs
Default: 1e-1
-lockSurface(-lk) boolean createqueryeditmultiuse
Keep the NURBS surface at the specified multi index unchanged by the fitting.
Default: false
Advanced flags
-caching(-cch) boolean createqueryedit
Modifies the node caching mode. See the node documentation for more information.
Note: For advanced users only.
-nodeState(-nds) int createqueryedit
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 be used more than once in a command.

MEL examples

// GlobalStitch across three surfaces surface1, surface2, surface3.
globalStitch -ch true surface1 surface2 surface3;