Go to: Synopsis. Flags. Return value. Related. Python examples.
untrim(
surfaceName
, [constructionHistory=boolean], [curveOnSurface=boolean], [name=string], [object=boolean], [polygon=int], [range=boolean], [rebuild=boolean], [replaceOriginal=boolean], [untrimAll=boolean])
Note: Strings representing object names and arguments must be separated by commas. This is not depicted in the synopsis.
untrim is undoable, queryable, and editable.
Untrim the surface.
constructionHistory, curveOnSurface, name, object, polygon, range, rebuild, replaceOriginal, untrimAll
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 have multiple arguments, passed either as a tuple or a list.
|
[string[]] (object name and node name)
intersect, projectCurve, trim
import maya.cmds as cmds
# Untrim surface with history.
cmds.untrim( 'surface', ch=True )
# Untrims surface without history.
cmds.untrim( 'surface', ch=False )