SubstituteOpInput

導入

v2.0

詳細

オペレータ プリミティブ入力を、他の同一タイプの入力に置き換えます。

スクリプト構文

SubstituteOpInput( Reference, [New] );

パラメータ

パラメータ タイプ 説明
Reference 文字列 置き換える古い入力オブジェクト
New 文字列 古い入力を置き換える新しい入力オブジェクト

デフォルト値:指定されていない場合は、選択セッションが起動されます。

VBScript の例

CreatePrim "Cone", "NurbsSurface"

Translate , -2.272, -0.000, 1.166, siRelative, siView, siObj, siXYZ

CreatePrim "Cylinder", "NurbsSurface"

Translate , 2.427, 0.000, -1.865, siRelative, siView, siObj, siXYZ

CreatePrim "Grid", "NurbsSurface"

ApplyOp "SrfFillet", "cone;grid", 3, siPersistentOperation

' replace 'Cone' with 'Cylinder' as input to the surface fillet operator

SubstituteOpInput "Cone", "Cylinder"