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

Synopsis

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.

Return value

None

Keywords

texture, uv, image

Related

move

Flags

borderSelection, bottomBorder, growSelection, leftBorder, rightBorder, shrinkSelection, topBorder
Long name (short name) Argument types Properties
-leftBorder(-lb) create
Selects the left border of the surface (U=0).
-rightBorder(-rb) create
Selects the right border of the surface (U=MAX).
-bottomBorder(-bb) create
Selects the bottom border of the surface (V=0).
-topBorder(-tb) create
Selects the top border of the patches (V=MAX).
-growSelection(-gs) int create
Grows the CV selection by the given number of CV
-shrinkSelection(-ss) int create
Shrinks the CV selection by the given number of CV
-borderSelection(-bs) create
Extract the border of the current CV selection.

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

// 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;