移動先: 概要 戻り値 フラグ. MEL 例.
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 は 「元に戻す」が可能、「照会」が可能、「編集」が可能 です。
closeSurface コマンドは U、V または両方向のサーフェスを閉じて周期サーフェスにします。閉じる方向は、direction フラグで制御されます。このコマンドでサーフェスが指定されていない場合、最初に選択したサーフェスが使用されます。
新しく閉じたサーフェスのパス名と作成されたディペンデンシー ノード名を返します。
このコマンドは、選択したサーフェスのアイソパラムも処理します。たとえば、アイソパラムが指定されていれば、surface1.u[0.33] で、direction フラグに関係なくサーフェスは V 方向に閉じられます。
戻り値の型は照会モードでは照会フラグが基になります。
blendBias, blendKnotInsertion, caching, constructionHistory, direction, name, nodeState, object, parameter, preserveShape, replaceOriginal
: コマンドの作成モードで使用可能なフラグ
|
: コマンドの編集モードで使用可能なフラグ
|
: コマンドの照会モードで使用可能なフラグ
|
: 1 つのコマンドで複数回使用可能なフラグ
|
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.