Go to: Synopsis. Return value. Flags. MEL examples.
closeSurface [-blendBias float] [-blendKnotInsertion boolean] [-caching boolean] [-constructionHistory boolean] [-direction int] [-name string] [-nodeState int] [-object boolean] [-parameter float] [-preserveShape int] [-replaceOriginal boolean]
[surface|surfaceIsoparm]
closeSurface is undoable, queryable, and editable.
The closeSurface command closes a surface in the U, V, or both
directions, making it periodic. The close direction is controlled
by the direction flag. If a surface is not specified in the
command, then the first selected surface will be used.
The pathname to the newly closed surface and the name of the resulting
dependency node are returned.
This command also handles selected surface isoparms. For example, if
an isoparm is specified, surface1.u[0.33], then the surface will be
closed in V, regardless of the direction flag.
string[] | Object name and node name |
In query mode, return type is based on queried flag.
blendBias, blendKnotInsertion, caching, constructionHistory, direction, name, nodeState, object, parameter, preserveShape, replaceOriginal
Long name (short name) |
Argument types |
Properties |
|
-blendBias(-bb)
|
float
|
|
|
Skew the result toward the first or the second surface depending on the blend value being smaller or larger than 0.5.
Default: 0.5
|
|
-blendKnotInsertion(-bki)
|
boolean
|
|
|
If set to true, insert a knot in one of the original surfaces (relative position given by the parameter attribute below) in order to produce a slightly different effect.
Default: false
|
|
-direction(-d)
|
int
|
|
|
The direction in which to close:
0 - U,
1 - V,
2 - Both U and V
Default: 0
|
|
-parameter(-p)
|
float
|
|
|
The parameter value for the positioning of the newly inserted knot.
Default: 0.1
|
|
-preserveShape(-ps)
|
int
|
|
|
0 - without preserving the shape
1 - preserve shape
2 - blend
Default: 1
|
|
Common flags |
-constructionHistory(-ch)
|
boolean
|
|
|
Turn the construction history on or off.
|
|
-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.
|
|
-object(-o)
|
boolean
|
|
|
Create the result, or just the dependency node.
|
|
-replaceOriginal(-rpo)
|
boolean
|
|
|
Create "in place" (i.e., replace).
|
|
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 be used more than once in a command.
|
closeSurface -ch on -d 0 -ps on surface1;
// Closes surface1 in the U direction with history and by preserving shape.
// The name of the closed surface, and the name of the newly created
// dependency node are returned.
closeSurface -ch on -d 2 -ps off surface1;
// Closes surface1 in both U and V directions, with history. Closing
// the surface will not preserve the shape of the surface.
closeSurface -ch on surface1.u[0.66];
// Closes surface1 in the V direction, with history. The direction is
// implied from the specified isoparm.