クラスタ
クラスタにコンポーネント(ポイント、エッジ、ポリゴンなど)を追加します。
注: このコマンドは、出力引数を使用します。 C#
および一部のスクリプト言語(JScript、PerlScript、Python
など)は、リファレンスによって渡される引数をサポートしていません。このため、状況に応じた適切な回避策を実行する必要があります。
スクリプト言語の場合、このコマンドは出力引数を取得するために使用できる ISIVTCollection を戻します。
C# の場合は、XSIApplication.ExecuteCommand
メソッドを使用してこのコマンドを呼び出すことができます。 ExecuteCommand は、出力引数を C# の
System.Object (出力引数の配列を含む)にパック化します(詳細については、「C#
からのコマンドの呼び出し」を参照)。
SIAddToCluster( InputObj, SubComp, OutputObj ); |
パラメータ | タイプ | 詳細 |
---|---|---|
InputObj | 文字列 | クラスタ オブジェクト |
SubComp | 文字列 | クラスタに追加するコンポーネント |
OutputObj | Cluster | 更新されたクラスタを戻します。 |
'This example shows how to add elements to a cluster newscene CreatePrim "Grid", "MeshSurface" CreateCluster "grid.pnt[4,13,22,31,36-44,49,58,67,76]" Translate , 0, 5, 0, siAbsolute, siParent, siObj, siY 'Cluster name can be changed. SetValue "grid.polymsh.cls.Point.Name", "PlusShape" 'Add point to cluster. 'Cluster is first and points to add come after. SIAddToCluster "grid.polymsh.cls.PlusShape", "grid.pnt[30,32,48,50]" |