Go to: Synopsis. Return value. Keywords. Related. Flags. MEL examples.
nurbsSelect [-borderSelection] [-bottomBorder] [-growSelection int] [-leftBorder] [-rightBorder] [-shrinkSelection int] [-topBorder]
nurbsSelect is NOT undoable, NOT queryable, and NOT editable.
Performs selection operations on NURBS objects.
If any of the border flags is set, then the appropriate borders are
selected. Otherwise the current CV selection is used, or all CVs if
the surfaces is selected as an object.
The growSelection, shrinkSelection, borderSelection flags are then applied
in that order.
In practice, it is recommended to use one flag at a time, except for
the border flags.
None
texture, uv, image
move
borderSelection, bottomBorder, growSelection, leftBorder, rightBorder, shrinkSelection, topBorder
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 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;