ジャンプ先: 概要. 戻り値. 関連. フラグ. Python 例.
circularFillet(
[surface] [surface]
, [caching=boolean], [constructionHistory=boolean], [curveOnSurface=boolean], [name=string], [nodeState=int], [object=boolean], [positionTolerance=float], [primaryRadius=linear], [secondaryRadius=linear], [tangentTolerance=float])
注: オブジェクトの名前と引数を表す文字列は、カンマで区切る必要があります。これはシノプシスに示されていません。
circularFillet は、取り消し可能、照会可能、および編集可能です。
このコマンドは、指定した 2 つの NURBS サーフェス間の転がるボールのサーフェス フィレット(円形フィレット)を計算する場合に使用します。このサーフェス上にトリム カーブを作成するには、-cos true を使用します。
照会モードでは、戻り値のタイプは照会されたフラグに基づきます。
freeFormFillet
caching, constructionHistory, curveOnSurface, name, nodeState, object, positionTolerance, primaryRadius, secondaryRadius, tangentTolerance
フラグはコマンドの作成モードで表示できます
|
フラグはコマンドの編集モードで表示できます
|
フラグはコマンドの照会モードで表示できます
|
フラグに複数の引数を指定し、タプルまたはリストとして渡すことができます。
|
import maya.cmds as cmds
cmds.circularFillet( 'surface1', 'surface2', ch=True, pr=-1.0, sr=1.0, cos=False )
cmds.circularFillet( 'surface3', 'surface4', ch=False, pr=-1.0, sr=2.0, cos=True, pt=0.001 )