ジャンプ先: 概要. 戻り値. 関連. フラグ. MEL 例.
freeFormFillet [-bias float] [-caching boolean] [-constructionHistory boolean] [-depth float] [-name string] [-nodeState int] [-object boolean] [-polygon int] [-positionTolerance float] [-range boolean] [-tangentTolerance float]
[surfaceIsoparm] [surfaceIsoparm]
freeFormFillet は、取り消し可能、照会可能、および編集可能です。
2 つのサーフェス トリム エッジ、アイソパラム、またはカーブ オンサーフェスの間にフリーフォームのサーフェス フィレットを作成します。フィレット サーフェス作成では、バイアスと深度としてブレンド コントロールが備わります。バイアス値は、2 つの選択したカーブの 2 つの端の接線をスケールします。深度値は選択した 2 つのカーブのフィレットの曲率をコントロールします。深度およびバイアスの既定値はそれぞれ 0.5 です。
照会モードでは、戻り値のタイプは照会されたフラグに基づきます。
circularFillet
bias, caching, constructionHistory, depth, name, nodeState, object, polygon, positionTolerance, range, tangentTolerance
フラグはコマンドの作成モードで表示できます
|
フラグはコマンドの編集モードで表示できます
|
フラグはコマンドの照会モードで表示できます
|
コマンド内でフラグを複数回使用できます。
|
// Create the fillet across a curve on surface and surface isoparm.
nurbsPlane -ch on -o on -po 0 -ax 0 1 0 -w 11 -lr 1;
circle -ch on -o on -nr 0 1 0 -r 3.79518 ;
projectCurve -ch 0 -rn false -un false -tol 0.01 "nurbsCircle1" "nurbsPlane1" ;
// Result: nurbsPlane1->projectionCurve1 //
nurbsPlane -p 0 6 0 -ax 0 1 0 -w 11 -lr 1;
// Result: nurbsPlane2 makeNurbPlane2 //
freeFormFillet -ch true -bias 0.0 -depth 0.5 -po true nurbsPlaneShape1->projectionCurve1_1 nurbsPlane2.v[1.0] ;
// Result: freeformFilletSurface1 ffFilletSrf1 //
trim -ch on -o on -rpo on -lu 0.2 -lv 0.2 nurbsPlaneShape1 projectionCurve1_Shape1;
// Result: nurbsPlaneShape1 trim1 //
freeFormFillet -ch false nurbsPlane1.edge[1][1][4] nurbsPlane2.v[0][0.0:0.6];
// Result: freeformFilletSurface2 //