Untrim the surface.
Long name (short name) | Argument Types | Properties | |
---|---|---|---|
caching (cch) | bool | ||
|
|||
constructionHistory (ch) | bool | ||
|
|||
curveOnSurface (cos) | bool | ||
|
|||
name (n) | unicode | ||
|
|||
noChanges (nc) | bool | ||
nodeState (nds) | int | ||
|
|||
object (o) | bool | ||
|
|||
replaceOriginal (rpo) | bool | ||
|
|||
untrimAll (all) | bool | ||
if true, untrim all the trims for the surface else untrim only the last trimFlag can appear in Create mode of commandFlag can have multiple arguments, passed either as a tuple or a list. |
Derived from mel command maya.cmds.untrim
Example:
import pymel.core as pm
import maya.cmds as cmds
# Untrim surface with history.
pm.untrim( 'surface', ch=True )
# Untrims surface without history.
pm.untrim( 'surface', ch=False )