移動先: 概要 戻り値 フラグ. Python 例.
globalStitch(
surface surface...
, [caching=boolean], [lockSurface=boolean], [maxSeparation=linear], [modificationResistance=float], [nodeState=int], [sampling=int], [stitchCorners=int], [stitchEdges=int], [stitchPartialEdges=boolean], [stitchSmoothness=int])
注意: オブジェクト名や引数を表す文字列はカンマで区切ります。これは概要には示されていません。
globalStitch は 「元に戻す」が可能、「照会」が可能、「編集」が可能 です。
このコマンドは NURBS サーフェスの globalStitch を計算します。最低 1 つの NURBS サーフェスがなければなりません。NURBS サーフェスはトリミングされていない状態である必要があります。
戻り値の型は照会モードでは照会フラグが基になります。
caching, lockSurface, maxSeparation, modificationResistance, nodeState, sampling, stitchCorners, stitchEdges, stitchPartialEdges, stitchSmoothness
: コマンドの作成モードで使用可能なフラグ
|
: コマンドの編集モードで使用可能なフラグ
|
: コマンドの照会モードで使用可能なフラグ
|
: タプルまたはリストとして渡された複数の引数を持てるフラグ
|
import maya.cmds as cmds
# GlobalStitch across three surfaces surface1, surface2, surface3.
cmds.globalStitch( 'surface1', 'surface2', 'surface3', ch=True )