移動先: 概要 戻り値 キーワード. 関連項目. フラグ. MEL 例.
nurbsSelect [-borderSelection] [-bottomBorder] [-growSelection int] [-leftBorder] [-rightBorder] [-shrinkSelection int] [-topBorder]
nurbsSelect は 「元に戻す」が不可能、「照会」が不可能、「編集」が不可能 です。
オブジェクトへの選択操作を実行します。
任意の境界フラグを設定すると、該当する境界が選択されます。それ以外の場合は、現在選択されている CV が使用されるか、サーフェスをオブジェクトとして選択している場合は、すべての CV が使用されます。
次に growSelection、shrinkSelection、borderSelection の各フラグが、この順番で適用されます。
実際には、一度にひとつのフラグを使用することをお勧めします(境界フラグを除く)。
なし
texture, uv, image
move
borderSelection, bottomBorder, growSelection, leftBorder, rightBorder, shrinkSelection, topBorder
: コマンドの作成モードで使用可能なフラグ
|
: コマンドの編集モードで使用可能なフラグ
|
: コマンドの照会モードで使用可能なフラグ
|
: 1 つのコマンドで複数回使用可能なフラグ
|
// Create a Nurbs plane.
nurbsPlane -u 5 -v 7;
// Select it top and bottom CVs.
nurbsSelect -topBorder -bottomBorder;
// Expand the selection to 3 rows.
nurbsSelect -growSelection 3;
// Select only the outline of the rows.
nurbsSelect -borderSelection;