v2.0
オペレータ デフォメーション
ケージでデフォメーションを適用します。
oReturn = SIApplyDeformByCage( [ConnectionSet], [Interactive], [ConstructionMode] ); |
作成された CageAutoAssignOp オペレータおよび CageDeformOp オペレータを含む XSICollection を戻します。
パラメータ | タイプ | 詳細 |
---|---|---|
ConnectionSet | ConnectionSet | オペレータに接続されるオブジェクトを指定します。 ConnectionSet の第 1 のグループには、頂点ベースのオブジェクトが含まれます。 ConnectionSet の第 2 のグループには、ジオメトリック オブジェクトが含まれます。 このオペレータに必要な接続セットについては、OpPreset を参照してください。 デフォルト値:現在選択されているオブジェクトをメイン グループとして使用 |
Interactive | ブール | True を設定すると、オブジェクトを選択するようユーザに要求します。
デフォルト値: False |
ConstructionMode | siConstructionMode | オペレータを適用するコンストラクション モードを指定します。
デフォルト値:現在のコンストラクション モードを使用 |
'This example creates a cage deformer (cube) over a sphere and a torus. 'Then, the cube is deformed by a taper, and the deformation is reflected 'on the sphere and the torus because of the DeformByCage operator. NewScene dim obj, obj1, cage set obj = CreatePrim( "Sphere", "MeshSurface" ) set obj1 = CreatePrim( "Torus", "MeshSurface" ) set cage = CreatePrim( "Cube", "MeshSurface" ) 'Apply the DeformByCage, with no picking session SIApplyDeformByCage obj & "," & obj1 & ";" & cage, False 'If we deform the cage, it will deform obj and obj1: ApplyOp "Taper", cage, 3, siPersistentOperation |