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

Synopsis

changeSubdivComponentDisplayLevel [-level int] [-relative boolean]

changeSubdivComponentDisplayLevel is undoable, queryable, and NOT editable.

Explicitly forces the subdivision surface to display components at a particular level of refinement.

Return value

int

In query mode, return type is based on queried flag.

Keywords

subdivision, surface, display, level, fine, coarse, level

Related

changeSubdivRegion, createSubdivRegion, nurbsToSubdiv, polyToSubdiv, querySubdiv, refineSubdivSelectionList, subdCollapse, subdToBlind, subdToPoly, subdiv, subdivCrease, subdivDisplaySmoothness

Flags

level, relative
Long name (short name) Argument types Properties
-level(-l) int createquery
Specifies the display level of components.
-relative(-r) boolean createquery
If set, level refers to the relative display level

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

// change the selected subdivision surface to display level 4 components
changeSubdivComponentDisplayLevel -l 4;
// increase the display level of the selected subivision surface by 1
changeSubdivComponentDisplayLevel -r -l 1;