ジャンプ先: 概要. 戻り値. 関連. フラグ. Python 例.
untrim(
surface
, [caching=boolean], [constructionHistory=boolean], [curveOnSurface=boolean], [name=string], [nodeState=int], [object=boolean], [replaceOriginal=boolean], [untrimAll=boolean])
注: オブジェクトの名前と引数を表す文字列は、カンマで区切る必要があります。これはシノプシスに示されていません。
untrim は、取り消し可能、照会可能、および編集可能です。
サーフェスのトリムを解除します。
照会モードでは、戻り値のタイプは照会されたフラグに基づきます。
intersect, projectCurve, trim
caching, constructionHistory, curveOnSurface, name, nodeState, object, replaceOriginal, untrimAll
フラグはコマンドの作成モードで表示できます
|
フラグはコマンドの編集モードで表示できます
|
フラグはコマンドの照会モードで表示できます
|
フラグに複数の引数を指定し、タプルまたはリストとして渡すことができます。
|
import maya.cmds as cmds
# Untrim surface with history.
cmds.untrim( 'surface', ch=True )
# Untrims surface without history.
cmds.untrim( 'surface', ch=False )