移動先: 概要 戻り値 関連項目 フラグ 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 )