移動先: 概要 戻り値 関連項目. フラグ. 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
: コマンドの作成モードで使用可能なフラグ
|
: コマンドの編集モードで使用可能なフラグ
|
: コマンドの照会モードで使用可能なフラグ
|
: 1 つのコマンドで複数回使用可能なフラグ
|
// 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 //