移動先: 概要 戻り値 関連項目. フラグ. MEL 例.

概要

singleProfileBirailSurface [-caching boolean] [-constructionHistory boolean] [-name string] [-nodeState int] [-object boolean] [-polygon int] [-tangentContinuityProfile1 boolean] [-transformMode int] curve curve curve

singleProfileBirailSurface は 「元に戻す」が可能、「照会」が可能、「編集」が可能 です。

このコマンドは、2 本のレイル カーブに沿ってプロファイル カーブをスイープすることによって、レイル サーフェスを作成します。サーフェス作成の要件の 1 つは、プロファイル カーブが 2 本のレイル カーブと交差していることです。プロファイルが、アイソパラム、カーブ オン サーフェス、トリム エッジなどのサーフェス カーブである場合、フラグ -tp1 true を使用すると、プロファイルが含まれているサーフェスの接線連続性が維持されます。

1 番目の引数はプロファイル カーブを表し、2 番目と 3 番目はレイルを表します。

戻り値

string[]オブジェクト名とノード名

戻り値の型は照会モードでは照会フラグが基になります。

関連項目

extrude

フラグ

caching, constructionHistory, name, nodeState, object, polygon, tangentContinuityProfile1, transformMode
ロング ネーム(ショート ネーム) 引数型 プロパティ
-tangentContinuityProfile1(-tp1) boolean createqueryedit
プロファイル全体の接線連続性を維持する必要があります。プロファイルはサーフェス カーブである必要があります。
デフォルト: false
-transformMode(-tm) int createqueryedit
トランスフォーム モードです(非比例、比例)。非比例がデフォルト値です。
デフォルト: 0
高度なフラグ
-caching(-cch) boolean createqueryedit
ノード キャッシング モードを修正します。詳細については、ノードの説明を参照してください。
: 上級ユーザ向けの機能です。
-nodeState(-nds) int createqueryedit
ノード状態を修正します。詳細については、ノードの説明を参照してください。
: 上級ユーザ向けの機能です。
一般的なフラグ
-name(-n) string create
作成されたオブジェクトに名前を付けます。
-constructionHistory(-ch) boolean create
コンストラクション ヒストリをオンまたはオフにします。
-object(-o) boolean create
結果のオブジェクト、またはディペンデンシー ノードのみを作成します。
-polygon(-po) int create
この引数の値は、この操作で作成されるオブジェクトのタイプを制御します。
  • 0: NURBS サーフェス
  • 1: ポリゴン(nurbsToPolygonsPref を使用して変換用のパラメータを設定)
  • 2: サブディビジョン サーフェス(nurbsToSubdivPref を使用して変換用のパラメータを設定)
  • 3: ベジェ サーフェス
  • 4: サブディビジョン サーフェス ソリッド(変換のためのパラメータを設定するには、nurbsToSubdivPref を使用)

: コマンドの作成モードで使用可能なフラグ : コマンドの編集モードで使用可能なフラグ
: コマンドの照会モードで使用可能なフラグ : 1 つのコマンドで複数回使用可能なフラグ

MEL 例

//Create a surface by sweeping profile "curve1" along the two rails
//given by isoparms surface1.u[0] and surface2.u[0.5].
singleProfileBirailSurface -ch on curve1 surface1.u[0] surface2.u[0.5] ;

// create a tangent continuous surface across the profile.
singleProfileBirailSurface -ch on -tp1 true surface1.u[0] curve1 curve2 ;